mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -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
|
If you are using state locking, Terraform will need the following AWS IAM
|
||||||
permissions on the DynamoDB table (`arn:aws:dynamodb:::table/mytable`):
|
permissions on the DynamoDB table (`arn:aws:dynamodb:::table/mytable`):
|
||||||
|
|
||||||
|
* `dynamodb:DescribeTable`
|
||||||
* `dynamodb:GetItem`
|
* `dynamodb:GetItem`
|
||||||
* `dynamodb:PutItem`
|
* `dynamodb:PutItem`
|
||||||
* `dynamodb:DeleteItem`
|
* `dynamodb:DeleteItem`
|
||||||
@ -89,6 +90,7 @@ This is seen in the following AWS IAM Statement:
|
|||||||
{
|
{
|
||||||
"Effect": "Allow",
|
"Effect": "Allow",
|
||||||
"Action": [
|
"Action": [
|
||||||
|
"dynamodb:DescribeTable",
|
||||||
"dynamodb:GetItem",
|
"dynamodb:GetItem",
|
||||||
"dynamodb:PutItem",
|
"dynamodb:PutItem",
|
||||||
"dynamodb:DeleteItem"
|
"dynamodb:DeleteItem"
|
||||||
|
Loading…
Reference in New Issue
Block a user