Merge pull request #30485 from salob/patch-1

Removing unnecessary comma from a single entry list example.
This commit is contained in:
Craig Wright 2022-02-08 11:59:44 -08:00 committed by GitHub
commit 3af6e82463
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ resource "aws_instance" "example" {
# dependency on the aws_iam_role_policy that Terraform cannot
# automatically infer, so it must be declared explicitly:
depends_on = [
aws_iam_role_policy.example,
aws_iam_role_policy.example
]
}
```