-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from bcgov/vpn-outputs
Added VPN outputs
- Loading branch information
Showing
4 changed files
with
85 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
output "vpn_gateway_connection_id" { | ||
description = "The ID of the VPN Gateway Connection." | ||
value = azurerm_vpn_gateway_connection.this.id | ||
} | ||
|
||
output "vpn_gateway_connection_name" { | ||
description = "The name of the VPN Gateway Connection." | ||
value = azurerm_vpn_gateway_connection.this.name | ||
} | ||
|
||
output "vpn_gateway_connection_remote_vpn_site_id" { | ||
description = "The ID of the Remote VPN Site." | ||
value = azurerm_vpn_gateway_connection.this.remote_vpn_site_id | ||
} | ||
|
||
output "vpn_gateway_connection_vpn_gateway_id" { | ||
description = "The ID of the VPN Gateway." | ||
value = azurerm_vpn_gateway_connection.this.vpn_gateway_id | ||
} | ||
|
||
output "vpn_gateway_connection_vpn_link" { | ||
description = "The VPN Link configuration." | ||
value = azurerm_vpn_gateway_connection.this.vpn_link | ||
} | ||
|
||
output "vpn_gateway_connection_internet_security_enabled" { | ||
description = "Is Internet Security enabled for the VPN Gateway Connection." | ||
value = azurerm_vpn_gateway_connection.this.internet_security_enabled | ||
} | ||
|
||
output "vpn_gateway_connection_routing" { | ||
description = "The Routing configuration." | ||
value = azurerm_vpn_gateway_connection.this.routing | ||
} | ||
|
||
output "vpn_gateway_connection_traffic_selector_policy" { | ||
description = "The Traffic Selector Policy configuration." | ||
value = azurerm_vpn_gateway_connection.this.traffic_selector_policy | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters