Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix aws provider version for latest terraform 0.13 #35

Merged
merged 3 commits into from
Oct 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,20 +97,21 @@ Available targets:

```
<!-- markdownlint-restore -->
<!-- markdownlint-disable -->
## Requirements

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

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.0 |
| aws | >= 2.0, < 4.0 |
| template | ~> 2.0 |

## Inputs
Expand Down Expand Up @@ -139,6 +140,7 @@ Available targets:
| zone\_id | Route53 DNS Zone ID |
| zone\_name | Route53 DNS Zone name |

<!-- markdownlint-restore -->



Expand Down
8 changes: 5 additions & 3 deletions docs/terraform.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
<!-- markdownlint-disable -->
## Requirements

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

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.0 |
| aws | >= 2.0, < 4.0 |
| template | ~> 2.0 |

## Inputs
Expand Down Expand Up @@ -40,3 +41,4 @@
| zone\_id | Route53 DNS Zone ID |
| zone\_name | Route53 DNS Zone name |

<!-- markdownlint-restore -->
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "label" {
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.17.0"
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.19.2"
namespace = var.namespace
stage = var.stage
environment = var.environment
Expand Down
4 changes: 2 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
terraform {
required_version = ">= 0.12.0"
required_version = ">= 0.12.0, < 0.14.0"

required_providers {
aws = "~> 2.0"
aws = ">= 2.0, < 4.0"
template = "~> 2.0"
null = "~> 2.0"
}
Expand Down