From fc6c67eebba7fc58cc360594be6c3260fe714d58 Mon Sep 17 00:00:00 2001 From: Dustin Alandzes <5882512+DustinAlandzes@users.noreply.github.com> Date: Mon, 18 Oct 2021 15:13:19 -0500 Subject: [PATCH 1/2] use terraform-in-action instead of scottwinkler --- modules/base/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/base/main.tf b/modules/base/main.tf index a6ac866..3a89adb 100644 --- a/modules/base/main.tf +++ b/modules/base/main.tf @@ -43,7 +43,7 @@ module "vpc" { } module "lb_sg" { - source = "scottwinkler/sg/aws" + source = "terraform-in-action/sg/aws" vpc_id = module.vpc.vpc_id ingress_rules = [{ port = 80 @@ -52,7 +52,7 @@ module "lb_sg" { } module "webserver_sg" { - source = "scottwinkler/sg/aws" + source = "terraform-in-action/sg/aws" vpc_id = module.vpc.vpc_id ingress_rules = [ { From 06314de4dbf60d95d8044b59df6251044670657d Mon Sep 17 00:00:00 2001 From: Dustin Alandzes <5882512+DustinAlandzes@users.noreply.github.com> Date: Mon, 18 Oct 2021 15:14:47 -0500 Subject: [PATCH 2/2] update autoscaling/main.tf to use terraform-in-action --- modules/autoscaling/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/autoscaling/main.tf b/modules/autoscaling/main.tf index 7c27c58..f4704a6 100644 --- a/modules/autoscaling/main.tf +++ b/modules/autoscaling/main.tf @@ -1,6 +1,6 @@ #create instance and autoscaling group and lb listeners module "iam_instance_profile" { - source = "scottwinkler/iip/aws" + source = "terraform-in-action/iip/aws" actions = ["logs:*"] }