forked from hashicorp/terraform-aws-vault-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
43 lines (35 loc) · 1.07 KB
/
outputs.tf
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
35
36
37
38
39
40
41
42
43
/**
* Copyright © 2014-2022 HashiCorp, Inc.
*
* This Source Code is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this project, you can obtain one at http://mozilla.org/MPL/2.0/.
*
*/
output "asg_name" {
value = module.vm.asg_name
}
output "kms_key_arn" {
value = module.kms.kms_key_arn
}
output "launch_template_id" {
value = module.vm.launch_template_id
}
output "vault_lb_dns_name" {
description = "DNS name of Vault load balancer"
value = module.loadbalancer.vault_lb_dns_name
}
output "vault_lb_zone_id" {
description = "Zone ID of Vault load balancer"
value = module.loadbalancer.vault_lb_zone_id
}
output "vault_lb_arn" {
description = "ARN of Vault load balancer"
value = module.loadbalancer.vault_lb_arn
}
output "vault_target_group_arn" {
description = "Target group ARN to register Vault nodes with"
value = module.loadbalancer.vault_target_group_arn
}
output "vault_sg_id" {
description = "Security group ID of Vault cluster"
value = module.vm.vault_sg_id
}