From e999cb84f01d33c377ab142bdce8c6508b3338ac Mon Sep 17 00:00:00 2001 From: jakemulley Date: Thu, 27 Jul 2023 11:16:58 +0100 Subject: [PATCH] Bump example version --- examples/ecr.tf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/ecr.tf b/examples/ecr.tf index 75bfa32..1b64a1d 100644 --- a/examples/ecr.tf +++ b/examples/ecr.tf @@ -5,7 +5,7 @@ * */ module "ecr" { - source = "github.com/ministryofjustice/cloud-platform-terraform-ecr-credentials?ref=5.3.0" + source = "github.com/ministryofjustice/cloud-platform-terraform-ecr-credentials?ref=6.0.0" # REQUIRED: Repository configuration repo_name = var.namespace @@ -76,11 +76,11 @@ module "ecr" { # deletion_protection = false # Tags (commented out until release) - # business_unit = var.business_unit - # application = var.application - # is_production = var.is_production + business_unit = var.business_unit + application = var.application + is_production = var.is_production team_name = var.team_name # also used for naming the container repository namespace = var.namespace # also used for creating a Kubernetes ConfigMap - # environment_name = var.environment - # infrastructure_support = var.infrastructure_support + environment_name = var.environment + infrastructure_support = var.infrastructure_support }