Skip to content

Instantly share code, notes, and snippets.

@AymenSegni
Created April 12, 2020 17:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AymenSegni/17ba644b611377bf1087666922753bfd to your computer and use it in GitHub Desktop.
Save AymenSegni/17ba644b611377bf1087666922753bfd to your computer and use it in GitHub Desktop.
# .... 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