-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from transcend-io/dmattia/listener_arn_outputs
Added outputs for ALB listener ARNs
- Loading branch information
Showing
6 changed files
with
39 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,24 @@ | ||
output internal_url { | ||
value = "https://${var.subdomain}.${var.root_domain}:${var.internal_port}" | ||
value = "https://${var.subdomain}.${var.root_domain}:${var.internal_port}" | ||
description = "Url of the internal sombra service. Depending on settings, it may only be accessible inside the VPC" | ||
} | ||
|
||
output external_url { | ||
value = "https://${var.subdomain}.${var.root_domain}:${var.external_port}" | ||
value = "https://${var.subdomain}.${var.root_domain}:${var.external_port}" | ||
description = "Url of the external sombra service. It is publically accessible" | ||
} | ||
|
||
output private_zone_id { | ||
value = module.load_balancer.private_zone_id | ||
value = module.load_balancer.private_zone_id | ||
description = "The hosted zone id of the private zone for the internal load balancer, if a private zone exists" | ||
} | ||
|
||
output internal_listener_arn { | ||
value = module.load_balancer.internal_listener_arn | ||
description = "ARN of the internal sombra load balancer listener" | ||
} | ||
|
||
output external_listener_arn { | ||
value = module.load_balancer.external_listener_arn | ||
description = "ARN of the external sombra load balancer listener" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters