Skip to content

Commit

Permalink
Merge pull request #30 from hazelops/core-424-425
Browse files Browse the repository at this point in the history
[CORE-424 CORE-425] r53_lb_dns_name + var typo fix
  • Loading branch information
igorkotof authored Sep 27, 2022
2 parents c80aae2 + ad4af6e commit 670e5fe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,7 @@ output "public_ip" {
output "ec2_dns_name" {
value = var.ec2_eip_dns_enabled ? aws_route53_record.ec2.0.fqdn : ""
}

output "r53_lb_dns_name" {
value = var.app_type == "web" || var.app_type == "tcp-app" ? aws_route53_record.alb.0.fqdn : ""
}
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ variable "tls_cert_arn" {
}

variable "https_enabled" {
type = string
type = bool
description = "Whether enable https or not (still needs tls_cert_arn)"
default = true
}
Expand Down

0 comments on commit 670e5fe

Please sign in to comment.