Skip to content

Commit ca4246c

Browse files
authored
feat: add secrets manager list
1 parent 469ddce commit ca4246c

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

Cloud.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,35 @@ Lists the parameters in the AWS account or the parameters shared with the authen
257257
aws ssm describe-parameters
258258
```
259259

260+
### AWS Secrets Manager
261+
262+
Lists the accessible secrets in AWS Secrets Manager:
263+
264+
```sh
265+
aws secretsmanager list-secrets
266+
```
267+
268+
Output:
269+
270+
```json
271+
{
272+
"SecretList": [
273+
{
274+
"ARN": "arn:aws:secretsmanager:us-east-1:ACCOUNT_ID:secret:redshiftcreds",
275+
"Name": "redshiftcreds",
276+
"LastChangedDate": "2022-08-25T14:22:39.924000-04:00",
277+
"LastAccessedDate": "2026-01-14T19:00:00-05:00",
278+
"SecretVersionsToStages": {
279+
"XXXXXX-XXXX-XXXX-XXXX-XXXXXXXXX": [
280+
"AWSCURRENT"
281+
]
282+
},
283+
"CreatedDate": "2022-08-25T14:22:39.630000-04:00"
284+
},
285+
]
286+
}
287+
```
288+
260289
### API Gateway (T1190)
261290

262291
AWS API Gateway is a service offered by Amazon Web Services (AWS) designed for developers to create, publish, and oversee APIs on a large scale. It functions as an entry point to an application, permitting developers to establish a framework of rules and procedures. This framework governs the access external users have to certain data or functionalities within the application.

0 commit comments

Comments
 (0)