Skip to content

Commit

Permalink
Merge pull request #16 from byu-oit/aws-provider
Browse files Browse the repository at this point in the history
update docs with new provider version
  • Loading branch information
joshgubler authored Dec 4, 2020
2 parents d753713 + 5808631 commit 26c97d4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
}
]
}'
echo "::set-env name=matrix::`echo $matrix | jq -c .`"
echo matrix=`echo $matrix | jq -c .` >> $GITHUB_ENV
outputs:
matrix: ${{ env.matrix }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ In a clean directory, create a `main.tf` file that looks like:

```hcl
provider "aws" {
version = "~> 2.42.0"
version = "~> 3.0"
region = "us-west-2"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/double_hop/double_hop.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
provider "aws" {
version = "~> 2.42"
version = "~> 3.0"
region = "us-west-2"
}

Expand Down
2 changes: 1 addition & 1 deletion examples/module/example.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
provider "aws" {
version = "~> 2.42"
version = "~> 3.0"
region = "us-west-2"
}

Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_version = ">= 0.12.16"
required_providers {
aws = ">= 2.42"
aws = ">= 3.0"
}
}

Expand Down

0 comments on commit 26c97d4

Please sign in to comment.