0
0
llucycodes42
The cloudstack_vpn_customer_gateway resource configures a customer VPN gateway. The name attribute sets the name of the resource. The cidr attribute sets the IP address of the gateway. The esp_policy attribute sets the VPN server authentication policy. The gateway attribute sets the IP address of the gateway. The ike_policy attribute sets the VPN server authentication policy. The ipsec_psk attribute sets the IPsec keys and secrets.
Shortcut: tf_cloudstack_vpn_customer_gateway
resource "cloudstack_vpn_customer_gateway" "${myResourceName}" {
name = "my-${myResourceName}"
cidr = "10.0.0.0/8"
esp_policy = "aes256-sha1"
gateway = "192.168.0.1"
ike_policy = "aes256-sha1"
ipsec_psk = "terraform"
}