Reputation: 1301
I've the following scenario:
Upvotes: 1
Views: 219
Reputation: 29746
Looking at the latest specification (api-version=2022-06-01-preview), it supposed to be possible.
In the vnetConfiguration
block, you can specify the outbound type and the virtual applicance IP:
vnetConfiguration: {
...
outboundSettings: {
outBoundType: 'UserDefinedRouting'
virtualNetworkApplianceIp: 'X.X.X.X'
}
}
This required a Premium
sku:
sku: {
name: 'Premium'
}
Found also this interesting article about locking down the VNET:
Upvotes: 1