Initial commit

This commit is contained in:
2024-02-19 19:12:32 +00:00
commit 163879aaca
7 changed files with 308 additions and 0 deletions

11
main.tf Normal file
View File

@@ -0,0 +1,11 @@
# Local
locals {
tags = {}
}
# Label
module "default_label" {
source = "git@gitlab.com:zulunity/terraform/modules/general/label.git?ref=0.0.0"
name = var.name
tags = merge(var.tags, local.tags)
}