-
Notifications
You must be signed in to change notification settings - Fork 8
/
outputs.tf
34 lines (28 loc) · 1.01 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
output "security_group_id" {
description = "A map of tags to add to all resources"
value = aws_security_group.this.id
}
output "security_group_name" {
description = "Name of the security group"
value = aws_security_group.this.name
}
output "security_group_description" {
description = "Security group description"
value = aws_security_group.this.description
}
output "security_group_vpc_id" {
description = "VPC ID"
value = aws_security_group.this.vpc_id
}
output "ec2_client_vpn_endpoint_id" {
description = "The ID of the Client VPN endpoint"
value = try(aws_ec2_client_vpn_endpoint.this_sso[0].id, null)
}
output "ec2_client_vpn_endpoint_arn" {
description = "The ARN of the Client VPN endpoint"
value = try(aws_ec2_client_vpn_endpoint.this_sso[0].arn, null)
}
output "ec2_client_vpn_network_associations" {
description = "Network associations for AWS Client VPN endpoint"
value = { for k, v in aws_ec2_client_vpn_network_association.this_sso : k => v }
}