mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-25 08:21:07 -06:00
Merge pull request #31792 from mferraroni/doc-s3-fix
Modifies permissions needed to use s3 with dynamoDb locks
This commit is contained in:
commit
20b3e8e5a1
@ -76,6 +76,7 @@ documentation about
|
||||
If you are using state locking, Terraform will need the following AWS IAM
|
||||
permissions on the DynamoDB table (`arn:aws:dynamodb:::table/mytable`):
|
||||
|
||||
* `dynamodb:DescribeTable`
|
||||
* `dynamodb:GetItem`
|
||||
* `dynamodb:PutItem`
|
||||
* `dynamodb:DeleteItem`
|
||||
@ -89,6 +90,7 @@ This is seen in the following AWS IAM Statement:
|
||||
{
|
||||
"Effect": "Allow",
|
||||
"Action": [
|
||||
"dynamodb:DescribeTable",
|
||||
"dynamodb:GetItem",
|
||||
"dynamodb:PutItem",
|
||||
"dynamodb:DeleteItem"
|
||||
|
Loading…
Reference in New Issue
Block a user