Skip to content

Commit

Permalink
Fixing fmt and missing comment provider
Browse files Browse the repository at this point in the history
  • Loading branch information
edson.siqueira@dnx.solutions authored and edson.siqueira@dnx.solutions committed Jun 17, 2022
1 parent 5d82e2f commit a6d25fd
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions examples/route53_health_check.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
module "terraform-aws-route53healthcheck" {
source = "git::https://github.com/DNXLabs/terraform-aws-route53healthcheck.git?ref=0.1.1"
for_each = { for healthcheck in try(local.workspace.route53_health_check.endpoint, []) : healthcheck.hostname => healthcheck }
providers = {
aws = aws.us-east-1
}
# providers = {
# aws = aws.us-east-1
# }

hostname = try(each.value.hostname, "[]")
port = try(each.value.port, 443 )
protocol = try(each.value.protocol, "HTTPS" )
healthcheck_path = try(each.value.healthcheck_path, "")
measure_latency = try(each.value.measure_latency, true)
hostname = try(each.value.hostname, "[]")
port = try(each.value.port, 443)
protocol = try(each.value.protocol, "HTTPS")
healthcheck_path = try(each.value.healthcheck_path, "")
measure_latency = try(each.value.measure_latency, true)
}

0 comments on commit a6d25fd

Please sign in to comment.