HC-vault-personal/outputs.tf

36 lines
939 B
Terraform
Raw Permalink Normal View History

2024-03-16 09:23:34 +00:00
# output "lb_certificate_arn" {
# description = "ARN of ACM cert to use with Vault LB listener"
# value = module.networking.lb_certificate_arn
# }
# output "leader_tls_servername" {
# description = "Shared SAN that will be given to the Vault nodes configuration for use as leader_tls_servername"
# value = module.networking.leader_tls_servername
# }
# output "private_subnet_ids" {
# description = "Private subnet IDs"
# value = module.networking.private_subnet_ids
# }
# output "secrets_manager_arn" {
# description = "ARN of secrets_manager secret"
# value = module.networking.secrets_manager_arn
# }
# output "vpc_id" {
# description = "The ID of the VPC"
# value = module.networking.vpc_id
# }
output "role_arn" {
description = "The ARN of the role"
value = var.role_arn
}
output "key_name" {
description = "The name of the key"
value = var.key_name
}