diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e74a951..e0001cc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 }} diff --git a/README.md b/README.md index 69e020a..ee3997e 100644 --- a/README.md +++ b/README.md @@ -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" } diff --git a/examples/double_hop/double_hop.tf b/examples/double_hop/double_hop.tf index 1008dbc..2fb32b8 100644 --- a/examples/double_hop/double_hop.tf +++ b/examples/double_hop/double_hop.tf @@ -1,5 +1,5 @@ provider "aws" { - version = "~> 2.42" + version = "~> 3.0" region = "us-west-2" } diff --git a/examples/module/example.tf b/examples/module/example.tf index f4877c4..eac6f8b 100644 --- a/examples/module/example.tf +++ b/examples/module/example.tf @@ -1,5 +1,5 @@ provider "aws" { - version = "~> 2.42" + version = "~> 3.0" region = "us-west-2" } diff --git a/main.tf b/main.tf index 68ee48e..bde9f3e 100644 --- a/main.tf +++ b/main.tf @@ -1,7 +1,7 @@ terraform { required_version = ">= 0.12.16" required_providers { - aws = ">= 2.42" + aws = ">= 3.0" } }