From 535d721a50fc5cd6814e297a67ef53ca4a94fbb0 Mon Sep 17 00:00:00 2001 From: Seong-dong Date: Mon, 26 Dec 2022 14:34:38 +0900 Subject: [PATCH] =?UTF-8?q?erc=20=EB=AA=A8=EB=93=88=ED=99=94,=20vpc=20publ?= =?UTF-8?q?ic=20dns=20=EC=84=A4=EC=A0=95=20=EB=93=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- {nm-ecr => modules/ecr}/main.tf | 27 ++++++--------- modules/ecr/valiables.tf | 9 +++++ modules/igw/main.tf | 7 ++++ modules/igw/valiables.tf | 4 +++ modules/vpc-subnet/main.tf | 15 ++++++++ modules/vpc-subnet/outputs.tf | 0 modules/vpc-subnet/valiables.tf | 29 ++++++++++++++++ modules/vpc/main.tf | 7 +++- modules/vpc/outputs.tf | 2 +- modules/vpc/valiables.tf | 24 ------------- nm-ecr/.terraform.lock.hcl | 39 --------------------- prod/main.tf | 61 ++++++++++++++++++++------------- prod/outputs.tf | 6 ---- prod/valiables.tf | 8 ++--- 14 files changed, 123 insertions(+), 115 deletions(-) rename {nm-ecr => modules/ecr}/main.tf (60%) create mode 100644 modules/ecr/valiables.tf create mode 100644 modules/igw/main.tf create mode 100644 modules/igw/valiables.tf create mode 100644 modules/vpc-subnet/outputs.tf create mode 100644 modules/vpc-subnet/valiables.tf delete mode 100644 nm-ecr/.terraform.lock.hcl diff --git a/nm-ecr/main.tf b/modules/ecr/main.tf similarity index 60% rename from nm-ecr/main.tf rename to modules/ecr/main.tf index e608eb3..57257d2 100644 --- a/nm-ecr/main.tf +++ b/modules/ecr/main.tf @@ -1,27 +1,20 @@ //ecr make -provider "aws" { - region = "ap-northeast-2" - - #2.x버전의 AWS공급자 허용 - version = "~> 2.0" - -} - -resource "aws_ecr_repository" "foo" { - name = "demo-flask-backend" +resource "aws_ecr_repository" "ecr" { + for_each = toset(var.names_list) + name = each.value image_tag_mutability = "MUTABLE" image_scanning_configuration { scan_on_push = true } } -resource "aws_ecr_repository" "bar" { - name = "demo-frontend" - image_tag_mutability = "MUTABLE" - image_scanning_configuration { - scan_on_push = true - } -} +# resource "aws_ecr_repository" "bar" { +# name = "demo-frontend" +# image_tag_mutability = "MUTABLE" +# image_scanning_configuration { +# scan_on_push = true +# } +# } # resource "null_resource" "null_for_ecr_get_login_password" { # provisioner "local-exec" { # command = <