-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoutputs.tf
More file actions
68 lines (56 loc) · 2.02 KB
/
Copy pathoutputs.tf
File metadata and controls
68 lines (56 loc) · 2.02 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
output "customer_gateway_bgp_asn" {
description = "Customer Gateway BGP ASN"
value = aws_customer_gateway.this.bgp_asn
}
output "customer_gateway_id" {
description = "Customer Gateway ID"
value = aws_customer_gateway.this.id
}
output "customer_gateway_ip_address" {
description = "Customer Gateway IP Address"
value = aws_customer_gateway.this.ip_address
}
output "vpn_connection_tunnel1_address" {
description = "Tunnel 1 Public IP Address"
value = aws_vpn_connection.this.tunnel1_address
}
output "vpn_connection_tunnel1_bgp_asn" {
description = "Tunnel 1 BGP ASN"
value = aws_vpn_connection.this.tunnel1_bgp_asn
}
output "vpn_connection_tunnel1_cgw_inside_address" {
description = "Tunnel 1 Customer Inside IP Address"
value = aws_vpn_connection.this.tunnel1_cgw_inside_address
}
output "vpn_connection_tunnel1_preshared_key" {
description = "Tunnel 1 Preshared Key"
value = aws_vpn_connection.this.tunnel1_preshared_key
}
output "vpn_connection_tunnel1_vgw_inside_address" {
description = "Tunnel 1 AWS Inside IP Address"
value = aws_vpn_connection.this.tunnel1_vgw_inside_address
}
output "vpn_connection_tunnel2_address" {
description = "Tunnel 2 Public IP Address"
value = aws_vpn_connection.this.tunnel2_address
}
output "vpn_connection_tunnel2_bgp_asn" {
description = "Tunnel 2 BGP ASN"
value = aws_vpn_connection.this.tunnel2_bgp_asn
}
output "vpn_connection_tunnel2_cgw_inside_address" {
description = "Tunnel 2 Customer Inside IP Address"
value = aws_vpn_connection.this.tunnel2_cgw_inside_address
}
output "vpn_connection_tunnel2_preshared_key" {
description = "Tunnel 2 Preshared Key"
value = aws_vpn_connection.this.tunnel2_preshared_key
}
output "vpn_connection_tunnel2_vgw_inside_address" {
description = "Tunnel 2 AWS Inside IP Address"
value = aws_vpn_connection.this.tunnel2_vgw_inside_address
}
output "vpn_connection_vpn_gw_id" {
description = "VPN Gateway ID"
value = aws_vpn_connection.this.id
}