Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Mar 24, 2023
1 parent 4b4f5e4 commit 53ea878
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/common.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ locals {
rr_type = upper(local.record_type)
default_enable_ptr = lookup(local._defaults.enable_ptr, local.record_type, false)
default_heritage_prefix = lookup(local._defaults.heritage_prefix, local.record_type, "") != "" ? format("%v.", lookup(local._defaults.heritage_prefix, local.record_type)) : ""
values = type(var.values) == "string" ? [var.values] : var.values
values = try([tostring(var.values)], tolist(var.values))
}

resource "time_static" "timestamp" {}

0 comments on commit 53ea878

Please sign in to comment.