Skip to content

Commit

Permalink
complete update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Mar 18, 2026
1 parent 216ff5a commit b426872
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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([
Expand Down
4 changes: 2 additions & 2 deletions providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
}
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 <environment>/<region>/vpc/cluster in template_repo_name to sync into environment/region-resolved cluster path."
type = list(string)
default = [
"eks/terragrunt.hcl",
Expand Down

0 comments on commit b426872

Please sign in to comment.