add missing trailing dot to cname

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2019-07-30 14:43:07 -04:00
parent dcf66cd102
commit 13d1538c4c
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020

View File

@ -88,5 +88,5 @@ resource "gandi_zonerecord" "main" {
name = var.stage
type = "CNAME"
ttl = 3600
values = [data.aws_elb.main.dns_name]
values = ["${data.aws_elb.main.dns_name}."]
}