Skip to content

Commit

Permalink
Add Tags in project output. (#2062)
Browse files Browse the repository at this point in the history
  • Loading branch information
lcaggio authored Feb 9, 2024
1 parent c42c4c1 commit 50c7d3c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/project/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1028,4 +1028,6 @@ module "bucket" {
| [service_accounts](outputs.tf#L96) | Product robot service accounts in project. | |
| [services](outputs.tf#L112) | Service APIs to enabled in the project. | |
| [sink_writer_identities](outputs.tf#L121) | Writer identities created for each sink. | |
| [tag_keys](outputs.tf#L128) | Tag key resources. | |
| [tag_values](outputs.tf#L137) | Tag value resources. | |
<!-- END TFDOC -->
17 changes: 17 additions & 0 deletions modules/project/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -124,3 +124,20 @@ output "sink_writer_identities" {
for name, sink in google_logging_project_sink.sink : name => sink.writer_identity
}
}

output "tag_keys" {
description = "Tag key resources."
value = {
for k, v in google_tags_tag_key.default : k => v if(
v.purpose == null || v.purpose == ""
)
}
}

output "tag_values" {
description = "Tag value resources."
value = {
for k, v in google_tags_tag_value.default :
k => v if !local.tag_values[k].tag_network
}
}

0 comments on commit 50c7d3c

Please sign in to comment.