You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Provides a resource to manage NSX-T IPsec VPN Tunnel. You can configure site-to-site connectivity between an NSX-T Data Center Edge Gateway and remote sites. The remote sites must use NSX-T Data Center, have third-party hardware routers, or VPN gateways that support IPSec.
Requested Resource(s) and/or Data Source(s)
cloudavenue_edgegateway_ipsec_tunnel
Potential Terraform Configuration
data "vcd_nsxt_edgegateway" "main" {
name = "tn01e02ocb0006205spt103"
}
resource "vcd_nsxt_ipsec_vpn_tunnel" "tunnel1" {
edge_gateway_id = data.vcd_nsxt_edgegateway.main.id
name = "First"
description = "testing tunnel"
pre_shared_key = "my-presharaed-key"
# Primary IP address of Edge Gateway pulled from data source
local_ip_address = tolist(data.vcd_nsxt_edgegateway.main.subnet)[0].primary_ip
local_networks = ["10.10.10.0/24", "30.30.30.0/28", "40.40.40.1/32"]
# That is a fake remote IP address
remote_ip_address = "1.2.3.4"
remote_networks = ["192.168.1.0/24", "192.168.10.0/24", "192.168.20.0/28"]
}
Description
Provides a resource to manage NSX-T IPsec VPN Tunnel. You can configure site-to-site connectivity between an NSX-T Data Center Edge Gateway and remote sites. The remote sites must use NSX-T Data Center, have third-party hardware routers, or VPN gateways that support IPSec.
Requested Resource(s) and/or Data Source(s)
Potential Terraform Configuration
References
https://registry.terraform.io/providers/vmware/vcd/latest/docs/resources/nsxt_ipsec_vpn_tunnel
Would you like to implement a fix?
None
The text was updated successfully, but these errors were encountered: