From b426872822c435a7af0b211c8085af5eba0b6522 Mon Sep 17 00:00:00 2001 From: "Matthew C. Morgan" Date: Wed, 18 Mar 2026 15:28:56 -0400 Subject: [PATCH] complete update workflow --- main.tf | 2 +- providers.tf | 4 ++-- variables.tf | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/main.tf b/main.tf index 2b258fb..adcb749 100644 --- a/main.tf +++ b/main.tf @@ -4,7 +4,7 @@ locals { path = "${var.environment}/${var.region}/vpc/cluster/${rel_path}" content = data.github_repository_file.template_cluster_files[rel_path].content } - if lookup(var.template_enabled_modules, split(rel_path, "/")[0], false) + if lookup(var.template_enabled_modules, split("/", rel_path)[0], false) ] managed_extra_files = concat([ diff --git a/providers.tf b/providers.tf index 9085181..1dc6ac9 100644 --- a/providers.tf +++ b/providers.tf @@ -2,11 +2,11 @@ terraform { required_providers { github = { source = "integrations/github" - version = ">= 6.6.0, < 6.7.0" + version = "~> 6.11" } aws = { source = "hashicorp/aws" - version = ">= 6.0" + version = "~> 6.0" } } } diff --git a/variables.tf b/variables.tf index 59d28ff..be9f275 100644 --- a/variables.tf +++ b/variables.tf @@ -283,7 +283,7 @@ variable "template_repo_ref" { } variable "template_cluster_file_paths" { - description = "List of file paths under environment/region/vpc/cluster in template_repo_name to sync into environment/region-resolved cluster path." + description = "List of file paths under //vpc/cluster in template_repo_name to sync into environment/region-resolved cluster path." type = list(string) default = [ "eks/terragrunt.hcl",