File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -11,14 +11,17 @@ jobs:
1111 validate :
1212 name : validate
1313 runs-on : ubuntu-18.04
14+ strategy :
15+ matrix :
16+ activity : ["0.13.7", "0.14.11", "1.0.11"]
1417 steps :
1518 - name : Checkout
1619 uses : actions/checkout@v2
1720
18- - name : Setup terraform
21+ - name : Setup terraform ${{ matrix.activity }}
1922 uses : hashicorp/setup-terraform@v1
2023 with :
21- terraform_version : 0.13.7
24+ terraform_version : ${{ matrix.activity }}
2225
2326 - run : terraform init -input=false
2427 - run : terraform fmt -check -diff -recursive
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ A module to create application secrets stored in [AWS Secrets Manager](https://a
1717
1818## Prerequisites
1919
20- * [ Terraform] ( https://www.terraform.io/downloads.html ) (version ` 0.12.20 ` or higher)
20+ * [ Terraform] ( https://www.terraform.io/downloads.html ) (version ` 0.13.7 ` or higher)
2121* [ AWS provider] ( https://www.terraform.io/docs/providers/aws/ ) (version ` 2.60 ` or higher)
2222
2323## Example usage
Original file line number Diff line number Diff line change 11terraform {
2- required_version = " >= 0.12.20 "
2+ required_version = " >= 0.13.7 "
33
44 required_providers {
55 aws = {
You can’t perform that action at this time.
0 commit comments