Skip to content

Instantly share code, notes, and snippets.

@Yamini-crypto
Created February 9, 2024 07:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Yamini-crypto/c2b272416c4b37497b20912a93942954 to your computer and use it in GitHub Desktop.
Save Yamini-crypto/c2b272416c4b37497b20912a93942954 to your computer and use it in GitHub Desktop.
aws iam create-policy \
--policy-name external-secret-policy \
--policy-document '{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": [
"secretsmanager:GetSecretValue",
"secretsmanager:DescribeSecret"
],
"Resource": "*"
}
]
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment