Skip to content

Commit

Permalink
Merge pull request terraform-in-action#24 from DustinAlandzes/patch-3
Browse files Browse the repository at this point in the history
update listing 9.1 to remove duplicate aws provider
  • Loading branch information
scottwinkler authored Oct 18, 2021
2 parents e967156 + e153231 commit 03ffcb5
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions chapter9/listing9.1/blue_green.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@ provider "aws" {
region = "us-west-2"
}

provider "aws" {
region = "us-west-2"
}

variable "production" {
default = "green"
}
Expand All @@ -31,4 +27,4 @@ module "blue" {

output "lb_dns_name" {
value = module.base.lb_dns_name
}
}

0 comments on commit 03ffcb5

Please sign in to comment.