-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoutputs.tf
More file actions
34 lines (28 loc) · 974 Bytes
/
outputs.tf
File metadata and controls
34 lines (28 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
output "controller_worker_address" {
value = aws_lb.boundary.dns_name
description = "Address of the NLB for workers to contact controllers"
}
output "worker_external_address" {
value = aws_lb.boundary.dns_name
description = "Address of the NLB for client to contact workers"
}
output "controller_sg_id" {
value = aws_security_group.controller.id
description = "Security group ID for controllers"
}
output "worker_sg_id" {
value = aws_security_group.worker.id
description = "Security group ID for workers"
}
output "kms" {
value = { for id, kms in aws_kms_key.key : id => kms.key_id }
description = "KMS key IDs"
}
output "postgres_secret_name" {
value = aws_secretsmanager_secret.postgres_url.name
description = "Name of the postgresql secrets URL"
}
output "controller_target_group_arn" {
value = aws_lb_target_group.controller_external.arn
description = "ARN of the client facing target group"
}