Skip to content

Instantly share code, notes, and snippets.

@AymenSegni
Created April 12, 2020 17:24
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
# .... 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