Skip to content

Commit

Permalink
use terraform-in-action instead of scottwinkler
Browse files Browse the repository at this point in the history
  • Loading branch information
DustinAlandzes authored Oct 18, 2021
1 parent 97a6850 commit fc6c67e
Showing 1 changed file with 2 additions and 2 deletions.
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 fc6c67e

Please sign in to comment.