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
| resource "azurerm_virtual_network_gateway" "example" {
name = "test"
location = azurerm_resource_group.example.location
resource_group_name = azurerm_resource_group.example.name
type = "Vpn"
vpn_type = "RouteBased"
active_active = false
enable_bgp = false
sku = "Basic"
ip_configuration {
public_ip_address_id = azurerm_public_ip.example.id
private_ip_address_allocation = "Dynamic"
subnet_id = azurerm_subnet.example.id
}
}
resource "azurerm_virtual_network_gateway_connection" "onpremise" {
name = "onpremise"
location = azurerm_resource_group.example.location
resource_group_name = azurerm_resource_group.example.name
type = "IPsec"
virtual_network_gateway_id = azurerm_virtual_network_gateway.example.id
local_network_gateway_id = azurerm_local_network_gateway.onpremise.id
shared_key = "4-v3ry-53cr37-1p53c-5h4r3d-k3y"
}}
|