cli: allow tagging cloud resources with custom tags (#3033)

This commit is contained in:
miampf 2024-04-19 09:07:57 +00:00 committed by GitHub
parent f60c133724
commit b187966581
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
27 changed files with 172 additions and 42 deletions

View file

@ -40,6 +40,7 @@ module "aws" {
debug = var.debug
enable_snp = var.enable_snp
custom_endpoint = var.custom_endpoint
additional_tags = var.additional_tags
}
module "constellation" {

View file

@ -70,3 +70,8 @@ variable "name_prefix" {
type = string
description = "Prefix for all resources."
}
variable "additional_tags" {
type = map(any)
description = "Additional tags that should be applied to created resources."
}