mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 22:19:33 +01:00
2ba0181dbe
* Replace v0.11 bracket type hints with Terraform v0.12 list expressions * Use expression syntax instead of interpolated strings, where suggested * Update AWS tutorial and worker pools documentation * Define Terraform and plugin version requirements in versions.tf * Require aws ~> 2.7 to support Terraform v0.12 * Require ct ~> 0.3.2 to support Terraform v0.12
11 lines
309 B
HCL
11 lines
309 B
HCL
output "target_group_http" {
|
|
description = "ARN of a target group of workers for HTTP traffic"
|
|
value = aws_lb_target_group.workers-http.arn
|
|
}
|
|
|
|
output "target_group_https" {
|
|
description = "ARN of a target group of workers for HTTPS traffic"
|
|
value = aws_lb_target_group.workers-https.arn
|
|
}
|
|
|