Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Feb 8, 2024
1 parent 67079d8 commit 6b63f87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion permissionset/settings.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
locals {
settings = var.settings_file != null && fileexists(var.settings_file) ? yamldecode(file(var.settings_file)) : null
settings = var.settings_file != null ? (fileexists(var.settings_file) ? yamldecode(file(var.settings_file)) : null) : null
name = coalesce(var.name, try(local.settings.group, null))
description = coalesce(var.description, try(local.settings.description, null), local.name)
auto_policy_acount = try(local.settings.auto_policy_count, var.auto_policy_count)
Expand Down

0 comments on commit 6b63f87

Please sign in to comment.