Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Apr 15, 2025
1 parent 8ddfbf0 commit 125314a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions copy_images.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ locals {
keycloak_name = "bitnami/keycloak"
keycloak_key = format("%v#%v", local.keycloak_name, var.keycloak_tag)
postgresql_key = format("%v#%v", "bitnami/postgresql", var.postgresql_tag)
ent_ecr_source = format("%v.%v.%v.%v", var.account_id, "dkr.ecr", var.region, "amazonaws.com/ent-images")
# ent_ecr_source = format("%v.%v.%v.%v", var.account_id, "dkr.ecr", var.region, "amazonaws.com/ent-images")

image_config = [
{
enabled = true
dest_path = null
name = "bitnami/keycloak"
source_image = "bitnami/keycloak"
source_registry = format("%v/%v", local.ent_ecr_source, "public-ecr")
source_registry = "public.ecr.aws"
source_tag = var.keycloak_tag
tag = var.keycloak_tag
},
Expand All @@ -19,7 +19,7 @@ locals {
dest_path = null
name = "bitnami/postgresql"
source_image = "bitnami/postgresql"
source_registry = format("%v/%v", local.ent_ecr_source, "public-ecr")
source_registry = "public.ecr.aws"
source_tag = var.postgresql_tag
tag = var.postgresql_tag
},
Expand Down
1 change: 1 addition & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ variable "profile" {
default = ""
}

# tflint-ignore: terraform_unused_declarations
variable "region" {
description = "region name"
type = string
Expand Down

0 comments on commit 125314a

Please sign in to comment.