Skip to content

Commit

Permalink
Merge pull request #1 from DustinAlandzes/patch-1
Browse files Browse the repository at this point in the history
use terraform-in-action instead of scottwinkler
  • Loading branch information
scottwinkler authored Dec 8, 2021
2 parents 97a6850 + 06314de commit c2905c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/autoscaling/main.tf
Original file line number Diff line number Diff line change
@@ -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:*"]
}

Expand Down
4 changes: 2 additions & 2 deletions modules/base/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 = [
{
Expand Down

0 comments on commit c2905c9

Please sign in to comment.