diff --git a/components/main.tf b/components/main.tf index f58ba3fd0..08dc43dda 100644 --- a/components/main.tf +++ b/components/main.tf @@ -1,3 +1,10 @@ +module "tags" { + source = "git::https://github.com/hmcts/terraform-module-common-tags.git?ref=master" + environment = var.env + product = var.product + builtFrom = var.builtFrom +} + # Check if branches exist data "github_branch" "existing_branches" { for_each = { for combo in local.repo_branch_combinations : "${combo.repo}:${combo.branch}" => combo } @@ -36,4 +43,4 @@ resource "github_branch_protection_v3" "branch_protection" { output "existing_branches" { value = data.github_branch.existing_branches -} +} \ No newline at end of file