forked from cloudposse/terraform-aws-ec2-client-vpn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
51 lines (42 loc) · 1.68 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
44
45
46
47
48
49
50
51
output "client_configuration" {
sensitive = true
value = module.ec2_client_vpn.client_configuration
description = "VPN Client Configuration data."
}
output "full_client_configuration" {
sensitive = true
value = module.ec2_client_vpn.full_client_configuration
description = "Client configuration including client certificate and private key"
}
output "log_group_arn" {
value = module.ec2_client_vpn.log_group_arn
description = "The ARN of the CloudWatch Log Group used for Client VPN connection logging."
}
output "log_group_name" {
value = module.ec2_client_vpn.log_group_name
description = "The name of the CloudWatch Log Group used for Client VPN connection logging."
}
output "security_group_arn" {
value = module.ec2_client_vpn.security_group_arn
description = "The ARN of the security group associated with the Client VPN endpoint."
}
output "security_group_id" {
value = module.ec2_client_vpn.security_group_id
description = "The ID of the security group associated with the Client VPN endpoint."
}
output "security_group_name" {
value = module.ec2_client_vpn.security_group_name
description = "The name of the security group associated with the Client VPN endpoint."
}
output "vpn_endpoint_arn" {
value = module.ec2_client_vpn.vpn_endpoint_arn
description = "The ARN of the Client VPN Endpoint Connection."
}
output "vpn_endpoint_dns_name" {
value = module.ec2_client_vpn.vpn_endpoint_dns_name
description = "The DNS Name of the Client VPN Endpoint Connection."
}
output "vpn_endpoint_id" {
value = module.ec2_client_vpn.vpn_endpoint_id
description = "The ID of the Client VPN Endpoint Connection."
}