Skip to content

Commit 46ab813

Browse files
authored
Merge pull request #30 from byu-oit/feature/terraform13
Terraform 13 version
2 parents e159f04 + 9929298 commit 46ab813

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches: [master]
66
types: [opened, reopened, synchronize, edited]
77
env:
8-
tf_version: "0.12.26" # must match value in examples/ci/main.tf
8+
tf_version: "0.13.1" # must match value in examples/ci/main.tf
99

1010
jobs:
1111
env:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ After defining the module you can then retrieve the information you need (see av
2121
```
2222

2323
## Requirements
24-
* Terraform version 0.12.17 or greater
24+
* Terraform version 0.13.0 or greater
2525

2626
## Input
2727

examples/ci/ci.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
required_version = "0.12.26"
2+
required_version = "0.13.1"
33
}
44

55
provider "aws" {

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
required_version = "~> 0.12.17"
2+
required_version = ">= 0.13.0"
33
required_providers {
44
aws = "~> 3.0"
55
}

0 commit comments

Comments
 (0)