Created
June 4, 2021 11:13
-
-
Save MaxMelcher/df618d4b4cc2a2612965f6515bad5e2d to your computer and use it in GitHub Desktop.
Azure Subnet update Private Endpoint Policy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", | |
"contentVersion": "1.0.0.0", | |
"parameters": { | |
}, | |
"variables": { | |
}, | |
"resources": [ | |
{ | |
"type": "Microsoft.Network/virtualNetworks/subnets", | |
"apiVersion": "2020-07-01", | |
"name": "vnet/subnet2", | |
"location": "westeurope", | |
"properties": { | |
"addressPrefix": "12.0.1.0/24", | |
"privateEndpointNetworkPolicies": "Enabled", | |
"privateLinkServiceNetworkPolicies": "Disabled" | |
} | |
} | |
], | |
"outputs": { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment