You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The implementation's use of for_each may, however, lead to errors of the form:
│ Error: Invalid for_each argument
[...]
│ NNN: for_each = toset(var.extra_policy_arns)
│ ├────────────────
│ │ var.extra_policy_arns is list of string with 1 element
│
│ The "for_each" value depends on resource attributes that cannot be determined
│ until apply, so Terraform cannot predict how many instances will be created.
│ To work around this, use the -target argument to first apply only the
│ resources that the for_each depends on.
which I think we should alert users to.
The text was updated successfully, but these errors were encountered:
Added in an August, 2021 change, the
extra_policy_arns
module variable offers one way to support the optional Datadog / AWS CloudTrail integration.The implementation's use of
for_each
may, however, lead to errors of the form:which I think we should alert users to.
The text was updated successfully, but these errors were encountered: