forked from trackit/terraform-aws-client-vpn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
outputs.tf
39 lines (30 loc) · 885 Bytes
/
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
output "kms_sops_arn" {
value = aws_kms_key.sops.arn
}
output "decrypt_command" {
value = "export SOPS_KMS_ARN=${aws_kms_key.sops.arn} && ${path.module}/scripts/decrypt.sh"
}
output "encrypt_command" {
value = "export SOPS_KMS_ARN=${aws_kms_key.sops.arn} && ${path.module}/scripts/encrypt.sh"
}
output "server_certificate_arn" {
value = aws_acm_certificate.server_cert.arn
}
output "env" {
value = var.env
}
output "pki_folder_name" {
value = local.provisioner_base_env["PKI_FOLDER_NAME"]
}
output "client_vpn_endpoint_id" {
value = aws_ec2_client_vpn_endpoint.client_vpn.id
}
output "client_vpn_endpoint_arn" {
value = aws_ec2_client_vpn_endpoint.client_vpn.arn
}
output "client_vpn_endpoint_dns_name" {
value = aws_ec2_client_vpn_endpoint.client_vpn.dns_name
}
output "client_vpn_endpoint_status" {
value = aws_ec2_client_vpn_endpoint.client_vpn.status
}