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 6f4336d commit 8d6baa5
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 @@ -14,7 +14,7 @@ locals {
host_name = var.name_parts[0]
zone = trimprefix(var.name, format("%v.", local.host_name))
private_zone = local.account_environment == "gov" ? true : var.private_zone
rr_type = uppercase(local.record_type)
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
Expand Down

0 comments on commit 8d6baa5

Please sign in to comment.