Commit a2eb2b36 authored by Jeff's avatar Jeff Committed by GitHub

use minimum versions for provider pinning and bump...

use minimum versions for provider pinning and bump terraform-aws-route53-cluster-hostname to 0.6.0 (#81)
parent ec14fecb
...@@ -146,19 +146,20 @@ Available targets: ...@@ -146,19 +146,20 @@ Available targets:
``` ```
<!-- markdownlint-restore --> <!-- markdownlint-restore -->
<!-- markdownlint-disable -->
## Requirements ## Requirements
| Name | Version | | Name | Version |
|------|---------| |------|---------|
| terraform | >= 0.12.0 | | terraform | >= 0.12.0 |
| aws | ~> 2.0 | | aws | >= 2.0 |
| null | ~> 2.0 | | null | >= 2.0 |
## Providers ## Providers
| Name | Version | | Name | Version |
|------|---------| |------|---------|
| aws | ~> 2.0 | | aws | >= 2.0 |
## Inputs ## Inputs
...@@ -216,6 +217,7 @@ Available targets: ...@@ -216,6 +217,7 @@ Available targets:
| port | Redis port | | port | Redis port |
| security\_group\_id | Security group ID | | security\_group\_id | Security group ID |
<!-- markdownlint-restore -->
......
<!-- markdownlint-disable -->
## Requirements ## Requirements
| Name | Version | | Name | Version |
|------|---------| |------|---------|
| terraform | >= 0.12.0 | | terraform | >= 0.12.0 |
| aws | ~> 2.0 | | aws | >= 2.0 |
| null | ~> 2.0 | | null | >= 2.0 |
## Providers ## Providers
| Name | Version | | Name | Version |
|------|---------| |------|---------|
| aws | ~> 2.0 | | aws | >= 2.0 |
## Inputs ## Inputs
...@@ -68,3 +69,4 @@ ...@@ -68,3 +69,4 @@
| port | Redis port | | port | Redis port |
| security\_group\_id | Security group ID | | security\_group\_id | Security group ID |
<!-- markdownlint-restore -->
...@@ -171,7 +171,7 @@ resource "aws_cloudwatch_metric_alarm" "cache_memory" { ...@@ -171,7 +171,7 @@ resource "aws_cloudwatch_metric_alarm" "cache_memory" {
} }
module "dns" { module "dns" {
source = "git::https://github.com/cloudposse/terraform-aws-route53-cluster-hostname.git?ref=tags/0.5.0" source = "git::https://github.com/cloudposse/terraform-aws-route53-cluster-hostname.git?ref=tags/0.6.0"
enabled = var.enabled && var.zone_id != "" ? true : false enabled = var.enabled && var.zone_id != "" ? true : false
name = var.dns_subdomain != "" ? var.dns_subdomain : var.name name = var.dns_subdomain != "" ? var.dns_subdomain : var.name
ttl = 60 ttl = 60
......
...@@ -2,7 +2,7 @@ terraform { ...@@ -2,7 +2,7 @@ terraform {
required_version = ">= 0.12.0" required_version = ">= 0.12.0"
required_providers { required_providers {
aws = "~> 2.0" aws = ">= 2.0"
null = "~> 2.0" null = ">= 2.0"
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment