We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8108e45 commit e902247Copy full SHA for e902247
modules/fscloud/main.tf
@@ -287,8 +287,8 @@ locals {
287
target_service_name => []
288
}
289
290
- global_deny_target_service_details = { for target_service_name, attributes in var.target_service_details :
291
- target_service_name => attributes if attributes.global_deny == true
+ global_deny_target_service_details = { for target_service_name, attributes in local.target_service_details :
+ target_service_name => attributes if try(attributes.global_deny, false) == true
292
293
294
0 commit comments