Skip to content

Commit

Permalink
Remove upper bounds on Terraform provider versions (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuru authored Nov 28, 2020
1 parent 77dc7dd commit b230e1b
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 25 deletions.
22 changes: 13 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<!-- markdownlint-disable -->
# terraform-aws-eks-cluster [![Latest Release](https://img.shields.io/github/release/cloudposse/terraform-aws-eks-cluster.svg)](https://github.com/cloudposse/terraform-aws-eks-cluster/releases/latest) [![Slack Community](https://slack.cloudposse.com/badge.svg)](https://slack.cloudposse.com)
<!-- markdownlint-restore -->

[![README Header][readme_header_img]][readme_header_link]

Expand Down Expand Up @@ -290,20 +292,20 @@ Available targets:

| Name | Version |
|------|---------|
| terraform | >= 0.12.0, < 0.14.0 |
| aws | >= 2.0, < 4.0 |
| kubernetes | ~> 1.11 |
| local | ~> 1.3 |
| null | ~> 2.0 |
| template | ~> 2.0 |
| terraform | >= 0.12.0 |
| aws | >= 2.0 |
| kubernetes | >= 1.11 |
| local | >= 1.3 |
| null | >= 2.0 |
| template | >= 2.0 |

## Providers

| Name | Version |
|------|---------|
| aws | >= 2.0, < 4.0 |
| kubernetes | ~> 1.11 |
| null | ~> 2.0 |
| aws | >= 2.0 |
| kubernetes | >= 1.11 |
| null | >= 2.0 |

## Inputs

Expand Down Expand Up @@ -530,8 +532,10 @@ Check out [our other projects][github], [follow us on twitter][twitter], [apply

### Contributors

<!-- markdownlint-disable -->
| [![Erik Osterman][osterman_avatar]][osterman_homepage]<br/>[Erik Osterman][osterman_homepage] | [![Andriy Knysh][aknysh_avatar]][aknysh_homepage]<br/>[Andriy Knysh][aknysh_homepage] | [![Igor Rodionov][goruha_avatar]][goruha_homepage]<br/>[Igor Rodionov][goruha_homepage] | [![Oscar][osulli_avatar]][osulli_homepage]<br/>[Oscar][osulli_homepage] |
|---|---|---|---|
<!-- markdownlint-restore -->


[osterman_homepage]: https://github.com/osterman
Expand Down
2 changes: 1 addition & 1 deletion context.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#

module "this" {
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.19.2"
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.21.0"

enabled = var.enabled
namespace = var.namespace
Expand Down
18 changes: 9 additions & 9 deletions docs/terraform.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@

| Name | Version |
|------|---------|
| terraform | >= 0.12.0, < 0.14.0 |
| aws | >= 2.0, < 4.0 |
| kubernetes | ~> 1.11 |
| local | ~> 1.3 |
| null | ~> 2.0 |
| template | ~> 2.0 |
| terraform | >= 0.12.0 |
| aws | >= 2.0 |
| kubernetes | >= 1.11 |
| local | >= 1.3 |
| null | >= 2.0 |
| template | >= 2.0 |

## Providers

| Name | Version |
|------|---------|
| aws | >= 2.0, < 4.0 |
| kubernetes | ~> 1.11 |
| null | ~> 2.0 |
| aws | >= 2.0 |
| kubernetes | >= 1.11 |
| null | >= 2.0 |

## Inputs

Expand Down
12 changes: 6 additions & 6 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
terraform {
required_version = ">= 0.12.0, < 0.14.0"
required_version = ">= 0.12.0"

required_providers {
aws = ">= 2.0, < 4.0"
template = "~> 2.0"
null = "~> 2.0"
local = "~> 1.3"
kubernetes = "~> 1.11"
aws = ">= 2.0"
template = ">= 2.0"
null = ">= 2.0"
local = ">= 1.3"
kubernetes = ">= 1.11"
}
}

0 comments on commit b230e1b

Please sign in to comment.