-
-
Notifications
You must be signed in to change notification settings - Fork 331
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/4.22.0' into master
- Loading branch information
Showing
30 changed files
with
316 additions
and
290 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
## Description | ||
|
||
A few sentences describing the overall goals of the pull request's commits. | ||
|
||
## Migrations required | ||
|
||
YES | NO - If yes please describe the migration. | ||
|
||
## Verification | ||
|
||
Please mention the examples you have verified. | ||
|
||
## Documentation | ||
Please ensure you update the README in `_docs/README.md`. The README.md in the root can be updated by running the script `ci/bin/autodocs.sh`, requires `terraform-docs` version 0.8+ | ||
|
||
We use [pre-commit](https://pre-commit.com/) to update the Terraform inputs and outputs in the documentation via [terraform-docs](https://github.com/terraform-docs/terraform-docs). Ensure you have installed those components. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,40 @@ | ||
name: Verify | ||
on: | ||
push: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
pull_request: | ||
|
||
|
||
jobs: | ||
verify: | ||
validate_module: | ||
name: Verify module | ||
strategy: | ||
matrix: | ||
terraform: [0.13.6] | ||
runs-on: ubuntu-latest | ||
|
||
container: | ||
image: hashicorp/terraform:${{ matrix.terraform }} | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: verify | ||
run: | | ||
source ./ci/bin/install.sh | ||
./ci/bin/verify.sh | ||
- uses: actions/checkout@v2 | ||
- run: terraform init -get -backend=false -input=false | ||
- run: terraform fmt -recursive -check=true -write=false | ||
|
||
verify-examples: | ||
verify_examples: | ||
name: Verify examples | ||
strategy: | ||
matrix: | ||
terraform: [0.13.6, 0.14.5, latest] | ||
example: ["runner-default", "runner-docker", "runner-pre-registered", "runner-public"] | ||
defaults: | ||
run: | ||
working-directory: examples/${{ matrix.example }} | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: verify-examples | ||
run: | | ||
source ./ci/bin/install.sh | ||
./ci/bin/verify-examples.sh | ||
container: | ||
image: hashicorp/terraform:${{ matrix.terraform }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: terraform init -get -backend=false -input=false | ||
- run: terraform fmt -recursive -check=true -write=false | ||
- run: terraform validate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"markdown.extension.toc.levels": "1..2" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,11 @@ | ||
provider "aws" { | ||
region = var.aws_region | ||
version = "~> 3.23.0" | ||
region = var.aws_region | ||
} | ||
|
||
provider "local" { | ||
version = "1.4" | ||
} | ||
provider "local" {} | ||
|
||
provider "null" { | ||
version = "~> 3.0.0" | ||
} | ||
provider "null" {} | ||
|
||
provider "tls" { | ||
version = "2.2.0" | ||
} | ||
provider "tls" {} | ||
|
||
provider "random" { | ||
version = "~> 3.0.1" | ||
} | ||
provider "random" {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,11 @@ | ||
provider "aws" { | ||
region = var.aws_region | ||
version = "2.68" | ||
region = var.aws_region | ||
} | ||
|
||
provider "local" { | ||
version = "1.4" | ||
} | ||
provider "local" {} | ||
|
||
provider "null" { | ||
version = "2.1.2" | ||
} | ||
provider "null" {} | ||
|
||
provider "tls" { | ||
version = "2.2.0" | ||
} | ||
provider "tls" {} | ||
|
||
provider "random" {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,26 @@ | ||
|
||
terraform { | ||
required_version = ">= 0.13" | ||
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
source = "hashicorp/aws" | ||
version = "~> 3.23" | ||
} | ||
local = { | ||
source = "hashicorp/local" | ||
source = "hashicorp/local" | ||
version = "~> 1.4" | ||
} | ||
null = { | ||
source = "hashicorp/null" | ||
source = "hashicorp/null" | ||
version = "~> 3.0" | ||
} | ||
tls = { | ||
source = "hashicorp/tls" | ||
source = "hashicorp/tls" | ||
version = "~> 2.2" | ||
} | ||
random = { | ||
source = "hashicorp/random" | ||
version = "~> 3.0" | ||
} | ||
} | ||
required_version = ">= 0.13" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,11 @@ | ||
provider "aws" { | ||
region = var.aws_region | ||
version = "2.68" | ||
region = var.aws_region | ||
} | ||
|
||
provider "local" { | ||
version = "1.4" | ||
} | ||
provider "local" {} | ||
|
||
provider "null" { | ||
version = "2.1.2" | ||
} | ||
provider "null" {} | ||
|
||
provider "tls" { | ||
version = "2.2.0" | ||
} | ||
provider "tls" {} | ||
|
||
provider "random" {} |
Oops, something went wrong.