Skip to content

Commit

Permalink
Update readme and package version
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Lloyd committed Jan 9, 2023
1 parent f0a7677 commit c6de907
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "asm"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
authors = ['Mike Lloyd']
description = "A simple CLI tool for interacting with AWS Secrets Manager"
Expand Down
27 changes: 25 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,28 @@ $ asm delete dev/mySecret
Are you sure you want to delete secret '{}' [y/N]?
```

## Todo
- Better error handling
### Describe a secret
Describes the specified secret.

```bash
$ asm describe dev/mySecret
```

```json
{
"ARN": "arn:aws:secretsmanager:us-west-1:123456:secret:dev/mySecret-abc123",
"CreatedDate": "2021-12-21T13:31:05.321000-08:00",
"LastAccessedDate": "2023-01-04T16:00:00-08:00",
"LastChangedDate": "2023-01-05T15:34:45.873000-08:00",
"Name": "dev/mySecret",
"Tags": [],
"VersionIdsToStages": {
"0beef02a-67f4-4e60-bcd9-00b946ef9dbf": [
"AWSCURRENT"
],
"f921c1ea-6bd0-4e19-b35c-788f01b52d67": [
"AWSPREVIOUS"
]
}
}
```

0 comments on commit c6de907

Please sign in to comment.