This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .... the rest of modules deployments | |
# Create ECR Repo and push the app image | |
# * main.tf | |
module "ecr" { | |
source = "../modules/ecr" | |
image_name = var.image_name | |
} | |
# * variables.tf | |
# .... the rest of modules variables | |
variable "image_name" { | |
type = string | |
default = "aymen-krypton" | |
description = "App Docker image name" | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment