delete comma from single entry list

This commit is contained in:
sian 2022-02-07 18:12:26 +00:00 committed by GitHub
parent d1ac8b71d4
commit d81335a55e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,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
]
}
```