Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Sep 8, 2023
1 parent 85151bd commit 615bea2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion group-assignment/accounts.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)) : {}
settings = var.settings_file != null && fileexists(var.settings_file) ? yamldecode(file(var.settings_file)) : null
group = length(local.settings) > 0 ? try(local.settings.group, null) : var.name
org_all = length(local.settings) > 0 ? try(local.settings.all, false) : var.org_all
org_account_names = length(local.settings) > 0 ? try(local.settings.account_names, []) : var.org_account_names
Expand Down

0 comments on commit 615bea2

Please sign in to comment.