Skip to content

Commit

Permalink
improvement: support Terraform 1.0 (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anders committed Jun 8, 2021
1 parent d7ee390 commit f389ffd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
terraform: ['~0.13.0', '~0.14.0', '~0.15.0']
terraform: ['~0.13.0', '~0.14.0', '~0.15.0', '~1.0.0']

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = ">= 0.13, < 0.16"
required_version = ">= 0.13, < 2.0"
}

module "this" {
Expand Down
2 changes: 1 addition & 1 deletion providers.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = ">= 0.13, < 0.16"
required_version = ">= 0.13, < 2.0"

required_providers {
aws = {
Expand Down

0 comments on commit f389ffd

Please sign in to comment.