Skip to content

Instantly share code, notes, and snippets.

@misterussell
Created June 5, 2018 19:05
Show Gist options
  • Save misterussell/d02e0c7f7d13f1f2f977e20f9a8cda56 to your computer and use it in GitHub Desktop.
Save misterussell/d02e0c7f7d13f1f2f977e20f9a8cda56 to your computer and use it in GitHub Desktop.
updates for IAM policy
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:DeleteItem",
"dynamodb:GetItem",
"dynamodb:PutItem",
"dynamodb:Query",
"dynamodb:Scan",
"dynamodb:UpdateItem",
"dynamodb:BatchWriteItem"
],
"Resource": [
"arn:aws:dynamodb:YOUR_REGION:YOUR_ACCOUNT:table/RecipeTable",
"arn:aws:dynamodb:YOUR_REGION:YOUR_ACCOUNT:table/RecipeTable/*",
"arn:aws:dynamodb:YOUR_REGION:YOUR_ACCOUNT:table/ElementTable",
"arn:aws:dynamodb:YOUR_REGION:YOUR_ACCOUNT:table/ElementTable/*",
"arn:aws:dynamodb:YOUR_REGION:YOUR_ACCOUNT:table/IngredientTable",
"arn:aws:dynamodb:YOUR_REGION:YOUR_ACCOUNT:table/IngredientTable/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment