Skip to content

Commit c2bb44c

Browse files
Loosen the requirements on local and null (#25)
* Loosen the requirements on local and null This brings the module in-line with TF recommendations on version pinning in modules. This fixes fun issues like: ``` Error: Failed to query available provider packages Could not retrieve the list of available versions for provider hashicorp/null: no available releases match the given constraints >= 2.0.*, ~> 2.0, >= 2.0.* ``` * Updated README.md Co-authored-by: actions-bot <58130806+actions-bot@users.noreply.github.com>
1 parent b317759 commit c2bb44c

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
<!-- markdownlint-disable -->
12
# terraform-aws-iam-s3-user [![Latest Release](https://img.shields.io/github/release/cloudposse/terraform-aws-iam-s3-user.svg)](https://github.com/cloudposse/terraform-aws-iam-s3-user/releases/latest) [![Slack Community](https://slack.cloudposse.com/badge.svg)](https://slack.cloudposse.com)
3+
<!-- markdownlint-restore -->
24

35
[![README Header][readme_header_img]][readme_header_link]
46

@@ -106,8 +108,8 @@ Available targets:
106108
|------|---------|
107109
| terraform | >= 0.12.0 |
108110
| aws | >= 2.0 |
109-
| local | ~> 1.2 |
110-
| null | ~> 2.0 |
111+
| local | >= 1.2 |
112+
| null | >= 2.0 |
111113

112114
## Providers
113115

@@ -298,8 +300,10 @@ Check out [our other projects][github], [follow us on twitter][twitter], [apply
298300

299301
### Contributors
300302

303+
<!-- markdownlint-disable -->
301304
| [![Andriy Knysh][aknysh_avatar]][aknysh_homepage]<br/>[Andriy Knysh][aknysh_homepage] | [![Erik Osterman][osterman_avatar]][osterman_homepage]<br/>[Erik Osterman][osterman_homepage] | [![Igor Rodionov][goruha_avatar]][goruha_homepage]<br/>[Igor Rodionov][goruha_homepage] |
302305
|---|---|---|
306+
<!-- markdownlint-restore -->
303307

304308
[aknysh_homepage]: https://github.com/aknysh
305309
[aknysh_avatar]: https://img.cloudposse.com/150x150/https://github.com/aknysh.png

docs/terraform.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
|------|---------|
66
| terraform | >= 0.12.0 |
77
| aws | >= 2.0 |
8-
| local | ~> 1.2 |
9-
| null | ~> 2.0 |
8+
| local | >= 1.2 |
9+
| null | >= 2.0 |
1010

1111
## Providers
1212

versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33

44
required_providers {
55
aws = ">= 2.0"
6-
local = "~> 1.2"
7-
null = "~> 2.0"
6+
local = ">= 1.2"
7+
null = ">= 2.0"
88
}
99
}

0 commit comments

Comments
 (0)