Skip to content

Commit 91b71c2

Browse files
woz5999brian-weis-msr
authored andcommitted
use minimum versions for provider pinning and bump terraform-aws-route53-cluster-hostname to 0.6.0 (cloudposse#81)
1 parent bfe9f54 commit 91b71c2

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,19 +146,20 @@ Available targets:
146146
147147
```
148148
<!-- markdownlint-restore -->
149+
<!-- markdownlint-disable -->
149150
## Requirements
150151

151152
| Name | Version |
152153
|------|---------|
153154
| terraform | >= 0.12.0 |
154-
| aws | ~> 2.0 |
155-
| null | ~> 2.0 |
155+
| aws | >= 2.0 |
156+
| null | >= 2.0 |
156157

157158
## Providers
158159

159160
| Name | Version |
160161
|------|---------|
161-
| aws | ~> 2.0 |
162+
| aws | >= 2.0 |
162163

163164
## Inputs
164165

@@ -216,6 +217,7 @@ Available targets:
216217
| port | Redis port |
217218
| security\_group\_id | Security group ID |
218219

220+
<!-- markdownlint-restore -->
219221

220222

221223

docs/terraform.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1+
<!-- markdownlint-disable -->
12
## Requirements
23

34
| Name | Version |
45
|------|---------|
56
| terraform | >= 0.12.0 |
6-
| aws | ~> 2.0 |
7-
| null | ~> 2.0 |
7+
| aws | >= 2.0 |
8+
| null | >= 2.0 |
89

910
## Providers
1011

1112
| Name | Version |
1213
|------|---------|
13-
| aws | ~> 2.0 |
14+
| aws | >= 2.0 |
1415

1516
## Inputs
1617

@@ -68,3 +69,4 @@
6869
| port | Redis port |
6970
| security\_group\_id | Security group ID |
7071

72+
<!-- markdownlint-restore -->

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ resource "aws_cloudwatch_metric_alarm" "cache_memory" {
183183
}
184184

185185
module "dns" {
186-
source = "git::https://github.com/cloudposse/terraform-aws-route53-cluster-hostname.git?ref=tags/0.5.0"
186+
source = "git::https://github.com/cloudposse/terraform-aws-route53-cluster-hostname.git?ref=tags/0.6.0"
187187
enabled = var.enabled && var.zone_id != "" ? true : false
188188
name = var.dns_subdomain != "" ? var.dns_subdomain : var.name
189189
ttl = 60

versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_version = ">= 0.12.0"
33

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

0 commit comments

Comments
 (0)