We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ipamPoolPrefixAllocations
Microsoft.Network/virtualNetworks
2024-03-01
Missing property(s)
The ipamPoolPrefixAllocations property now exists to support allocation of address spaces from IPAM (see https://learn.microsoft.com/en-us/azure/virtual-network-manager/how-to-manage-ip-addresses-network-manager?tabs=armtemplate)
The API documentation hasn't been updated yet (https://learn.microsoft.com/en-us/azure/templates/microsoft.network/virtualnetworks?pivots=deployment-language-bicep)
This property is valid under properties -> addressSpace for virtualNetworks, and directly under properties for subnets.
properties
addressSpace
resource networkManager 'Microsoft.Network/networkManagers@2024-03-01' existing = { name: 'NetworkManager' } resource ipamPool 'Microsoft.Network/networkManagers/ipamPools@2024-01-01-preview' existing = { parent: networkManager name: 'CoreNetwork' } resource dynamic 'Microsoft.Network/virtualNetworks@2024-03-01' = { name: 'dynamic-vnet' location: resourceGroup().location properties: { addressSpace: { ipamPoolPrefixAllocations: [ { pool: { id: ipamPool.id } numberOfIpAddresses: 256 } ] } } resource defaultSubnet 'subnets' = { name: 'default' properties: { ipamPoolPrefixAllocations: [ { pool: { id: ipamPool.id } numberOfIpAddresses: 64 } ] } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Resource Type
Microsoft.Network/virtualNetworks
Api Version
2024-03-01
Issue Type
Missing property(s)
Other Notes
The
ipamPoolPrefixAllocations
property now exists to support allocation of address spaces from IPAM (see https://learn.microsoft.com/en-us/azure/virtual-network-manager/how-to-manage-ip-addresses-network-manager?tabs=armtemplate)The API documentation hasn't been updated yet (https://learn.microsoft.com/en-us/azure/templates/microsoft.network/virtualnetworks?pivots=deployment-language-bicep)
This property is valid under
properties
->addressSpace
for virtualNetworks, and directly underproperties
for subnets.Bicep Repro
Confirm
The text was updated successfully, but these errors were encountered: