Skip to content

Commit

Permalink
rename to match
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Mar 16, 2026
1 parent 4699883 commit 9cce608
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
11 changes: 0 additions & 11 deletions locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -108,15 +108,4 @@ locals {
tempo_chart_version = var.versions.tempo.chart_version
tempo_tag = var.versions.tempo.tag
}
managed_extra_files = concat([
{
path = "_envcommon/default-versions.hcl"
content = templatefile("${path.module}/templates/default-versions.hcl", local.default_versions)
},
{
path = "_envcommon/common-variables.hcl"
content = templatefile("${path.module}/templates/common-variables.hcl", local.common_vars)
}
],
var.github_actions_workflows)
}
14 changes: 13 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
locals {
managed_extra_files = concat([
{
path = "_envcommon/default-versions.hcl"
content = templatefile("${path.module}/templates/default-versions.hcl.tf.tpl", local.default_versions)
},
{
path = "_envcommon/common-variables.hcl"
content = templatefile("${path.module}/templates/common-variables.hcl.tf.tpl", local.common_vars)
}],
var.github_actions_workflows)

rendered_files = {
"config.json" : jsonencode({
environment = var.environment
Expand Down Expand Up @@ -111,7 +122,8 @@ module "github_repo" {
path = path
content = content
}],
local.managed_extra_files)
local.managed_extra_files,
var.github_actions_workflows)

archive_on_destroy = false
github_org_teams = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ locals {
"us-gov-east-1" = "vpc-070595c5b133243dd"
"us-gov-west-1" = "vpc-08b7b4db6a5ddf9c1"
}
dev = local.route53_info["prod"]
prod = {
"account_id" = "057405694017"
"alias" = "ent-ew-network-prod"
Expand All @@ -53,6 +54,7 @@ locals {
"profile" = "269222635945-lab-gov-shared-nonprod"
"region" = "us-gov-east-1"
}
dev = local.enterprise_ecr_account["prod"]
prod = {
"account_id" = "067074201825"
"alias" = "ent-gov-shared-prod"
Expand Down
File renamed without changes.

0 comments on commit 9cce608

Please sign in to comment.