Skip to content

Commit

Permalink
Merge pull request #9 from goci-io/terraform13
Browse files Browse the repository at this point in the history
update to terraform >= 0.13
  • Loading branch information
etwillbefine authored Nov 21, 2020
2 parents be54b64 + 8cfacec commit 840a3d5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/terraform-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ jobs:
- name: 'Terraform Init'
uses: hashicorp/terraform-github-actions@v0.8.0
with:
tf_actions_version: 0.12.24
tf_actions_version: 0.13.5
tf_actions_subcommand: 'init'
tf_actions_working_dir: ${{ matrix.stack }}
args: '-backend=false'
- name: 'Terraform Format'
uses: hashicorp/terraform-github-actions@v0.8.0
with:
tf_actions_version: 0.12.24
tf_actions_version: 0.13.5
tf_actions_subcommand: 'fmt'
tf_actions_working_dir: ${{ matrix.stack }}
- name: 'Terraform Validate'
uses: hashicorp/terraform-github-actions@v0.8.0
with:
tf_actions_version: 0.12.24
tf_actions_version: 0.13.5
tf_actions_subcommand: 'validate'
tf_actions_working_dir: ${{ matrix.stack }}
7 changes: 5 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
terraform {
required_version = ">= 0.12.1"
required_version = ">= 0.13.0"

required_providers {
aws = "~> 2.25"
aws = {
source = "hashicorp/aws"
version = "~> 3.3"
}
}
}

Expand Down

0 comments on commit 840a3d5

Please sign in to comment.