Skip to content

Commit 9879fae

Browse files
authored
use minimum versions for provider pinning (#25)
1 parent 6a17ba1 commit 9879fae

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,15 +101,15 @@ Available targets:
101101

102102
| Name | Version |
103103
|------|---------|
104-
| terraform | >= 0.12.0, < 0.14.0 |
105-
| aws | ~> 2.0 |
106-
| local | ~> 1.2 |
104+
| terraform | >= 0.12.0 |
105+
| aws | >= 2.0 |
106+
| local | >= 1.2 |
107107

108108
## Providers
109109

110110
| Name | Version |
111111
|------|---------|
112-
| aws | ~> 2.0 |
112+
| aws | >= 2.0 |
113113

114114
## Inputs
115115

docs/terraform.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33

44
| Name | Version |
55
|------|---------|
6-
| terraform | >= 0.12.0, < 0.14.0 |
7-
| aws | ~> 2.0 |
8-
| local | ~> 1.2 |
6+
| terraform | >= 0.12.0 |
7+
| aws | >= 2.0 |
8+
| local | >= 1.2 |
99

1010
## Providers
1111

1212
| Name | Version |
1313
|------|---------|
14-
| aws | ~> 2.0 |
14+
| aws | >= 2.0 |
1515

1616
## Inputs
1717

versions.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
terraform {
2-
required_version = ">= 0.12.0, < 0.14.0"
2+
required_version = ">= 0.12.0"
33

44
required_providers {
5-
aws = "~> 2.0"
6-
local = "~> 1.2"
5+
aws = ">= 2.0"
6+
local = ">= 1.2"
77
}
88
}

0 commit comments

Comments
 (0)