Skip to content

Commit

Permalink
remove ~ from terraform required_version, change aws version from 3.2…
Browse files Browse the repository at this point in the history
…2 to 3.28, fix path to codepipeline
  • Loading branch information
Dustin Alandzes committed Oct 19, 2021
1 parent d90ec00 commit 6ec5699
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions chapter12/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module "s3backend" { #A
}

module "codepipeline" { #B
source = "./modules/codepipeline"
source = "./codepipeline"
name = "terraform-in-action"
vcs_repo = var.vcs_repo
auto_apply = true
Expand All @@ -26,8 +26,8 @@ auto_apply = true
}

terraform {
required_version = "~> 0.14"
required_version = "> 0.14"
required_providers {
aws = "= 3.22"
aws = "= 3.28"
}
}

0 comments on commit 6ec5699

Please sign in to comment.