From c4f78d3d8b66be60463031e7690cf9d1cb2de3d8 Mon Sep 17 00:00:00 2001 From: Bill Monkman Date: Mon, 24 Aug 2020 13:17:39 -0700 Subject: [PATCH] Update terraform-aws-route53-cluster-hostname versions to support Terraform 0.13 (#68) --- main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.tf b/main.tf index 68e10a8..0fee3cb 100644 --- a/main.tf +++ b/main.tf @@ -248,7 +248,7 @@ resource "aws_elasticsearch_domain_policy" "default" { } module "domain_hostname" { - source = "git::https://github.com/cloudposse/terraform-aws-route53-cluster-hostname.git?ref=tags/0.3.0" + source = "git::https://github.com/cloudposse/terraform-aws-route53-cluster-hostname.git?ref=tags/0.5.0" enabled = var.enabled && var.dns_zone_id != "" ? true : false name = var.elasticsearch_subdomain_name == "" ? var.name : var.elasticsearch_subdomain_name ttl = 60 @@ -257,7 +257,7 @@ module "domain_hostname" { } module "kibana_hostname" { - source = "git::https://github.com/cloudposse/terraform-aws-route53-cluster-hostname.git?ref=tags/0.3.0" + source = "git::https://github.com/cloudposse/terraform-aws-route53-cluster-hostname.git?ref=tags/0.5.0" enabled = var.enabled && var.dns_zone_id != "" ? true : false name = var.kibana_subdomain_name ttl = 60