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
# Even though we're only performing a comparison (var.ibmcloud_cos_api_key != null),
282
+
# Terraform treats the entire value as "tainted" due to sensitivity.
283
+
# Later, in the cloud_logs module, where the data_storage input variable is used in a for_each loop,
284
+
# the loop fails with the error: "Sensitive values, or values derived from sensitive values, cannot be used as for_each arguments."
285
+
# However, since we use nonsensitive() solely for logical comparison, we are not exposing any secret values to logs and it's safe to use. Issue https://github.ibm.com/GoldenEye/issues/issues/13562.
# Even though we're only performing a comparison (var.ibmcloud_cos_api_key != null),
293
+
# Terraform treats the entire value as "tainted" due to sensitivity.
294
+
# Later, in the cloud_logs module, where the data_storage input variable is used in a for_each loop,
295
+
# the loop fails with the error: "Sensitive values, or values derived from sensitive values, cannot be used as for_each arguments."
296
+
# However, since we use nonsensitive() solely for logical comparison, we are not exposing any secret values to logs and it's safe to use. Issue https://github.ibm.com/GoldenEye/issues/issues/13562.
0 commit comments