Skip to content

Commit 338e685

Browse files
fix: output generated buckets (#19)
1 parent bbd56c6 commit 338e685

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres
77
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
# [0.7.3] - 2024-08-08
10+
11+
[Compare with previous version](https://github.com/sparkfabrik/terraform-google-gcp-application-bucket-creation-helper/compare/0.7.2...0.7.3)
12+
13+
- Fix `generated_bucket_names` output
14+
915
# [0.7.2] - 2024-08-07
1016

1117
[Compare with previous version](https://github.com/sparkfabrik/terraform-google-gcp-application-bucket-creation-helper/compare/0.7.1...0.7.2)

outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ output "details_of_used_tag_values" {
2323

2424
output "generated_bucket_names" {
2525
description = "The list with the names of the buckets managed by this module."
26-
value = local.generated_bucket_names
26+
value = [for k, v in local.generated_bucket_names : v]
2727
}

0 commit comments

Comments
 (0)