Skip to content

Commit b11d8ba

Browse files
authored
Avoid churn around IAM policy (#15)
With the order as it was, Terraform Cloud would report a change to the policy, presumably because the list coming back from AWS was sorted unlike the HCL.
1 parent 72de6b8 commit b11d8ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ data "aws_iam_policy_document" "assume_role_policy_doc" {
8888
type = "Service"
8989

9090
identifiers = [
91-
"lambda.amazonaws.com",
9291
"edgelambda.amazonaws.com",
92+
"lambda.amazonaws.com",
9393
]
9494
}
9595
}

0 commit comments

Comments
 (0)