1
0
mirror of https://github.com/raseels-repos/golang-saas-starter-kit.git synced 2025-06-29 00:52:03 +02:00

document AWS permissions in readme required for secret manager

This commit is contained in:
Lee Brown
2019-05-17 15:00:01 -04:00
parent 2651aea991
commit f4d44b57d4

View File

@ -146,3 +146,23 @@ $ curl -H "Authorization: Bearer ${TOKEN}" http://localhost:3000/v1/users
## What's Next ## What's Next
We are in the process of writing more documentation about this code. Classes are being finalized as part of the Ultimate series. We are in the process of writing more documentation about this code. Classes are being finalized as part of the Ultimate series.
## AWS Permissions
Base required permissions
```
secretsmanager:CreateSecret
secretsmanager:GetSecretValue
secretsmanager:ListSecretVersionIds
secretsmanager:PutSecretValue
secretsmanager:UpdateSecret
```
Additional permissions required for unittests
```
secretsmanager:DeleteSecret
```