tests/functional/Microsoft.Network/publicIPAddresses/deploy/deploy.json
{ "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { "type": "string" }, "publicIpAddressName": { "type": "string" } }, "resources": [ { "apiVersion": "2021-05-01", "type": "Microsoft.Network/publicIpAddresses", "name": "[parameters('publicIpAddressName')]", "location": "[parameters('location')]", "sku": { "name": "Standard" }, "properties": { "publicIPAllocationMethod": "Static" }, "tags": {} } ] } |