Skip to content

Commit

Permalink
update heritage_tags to pass value
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Mar 7, 2024
1 parent 00a5e20 commit cff57ed
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@
* 1.0.3 -- 2023-04-06
- add zone variable, calculate if missing from everything after first dot. Need to use
zone if the zone is called {domain} but the name registered is {name}.{name}.{domain}

* 1.0.4 -- 2024-03-07
- update heritage_tags to pass the value
2 changes: 1 addition & 1 deletion common/heritage_tags.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ locals {
format("%v/region=%v", local._defaults.heritage_label, local.region),
format("%v/create_time=%d", local._defaults.heritage_label, time_static.timestamp.unix)
]
heritage_tags = [for k, v in var.heritage_tags : format("%v/%v", local._defaults.heritage_label, k)]
heritage_tags = [for k, v in var.heritage_tags : format("%v/%v=%v", local._defaults.heritage_label, k, v)]
}
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "1.0.3"
_module_version = "1.0.4"
}

0 comments on commit cff57ed

Please sign in to comment.