Skip to content

Commit

Permalink
null check
Browse files Browse the repository at this point in the history
  • Loading branch information
jorrite committed Jul 29, 2024
1 parent d19bc32 commit 1d772ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
locals {
account_variable_set = {
name = var.account_variable_set.name ? var.account_variable_set.name : var.name
name = var.account_variable_set.name != null ? var.account_variable_set.name : var.name

clear_text_terraform_variables = merge(
// always add account = var.name
Expand Down

0 comments on commit 1d772ea

Please sign in to comment.