зеркало из https://github.com/Azure/ARO-RP.git
49 строки
1.7 KiB
JSON
49 строки
1.7 KiB
JSON
{
|
|
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
|
|
"contentVersion": "1.0.0.0",
|
|
"resources": [
|
|
{
|
|
"properties": {
|
|
"securityRules": [
|
|
{
|
|
"properties": {
|
|
"protocol": "Tcp",
|
|
"sourcePortRange": "*",
|
|
"destinationPortRange": "443",
|
|
"sourceAddressPrefix": "*",
|
|
"destinationAddressPrefix": "*",
|
|
"access": "Allow",
|
|
"priority": 120,
|
|
"direction": "Inbound"
|
|
},
|
|
"name": "rp_in"
|
|
}
|
|
]
|
|
},
|
|
"name": "rp-nsg",
|
|
"type": "Microsoft.Network/networkSecurityGroups",
|
|
"location": "[resourceGroup().location]",
|
|
"apiVersion": "2019-07-01"
|
|
},
|
|
{
|
|
"properties": {},
|
|
"name": "rp-pe-nsg",
|
|
"type": "Microsoft.Network/networkSecurityGroups",
|
|
"location": "[resourceGroup().location]",
|
|
"apiVersion": "2019-07-01"
|
|
},
|
|
{
|
|
"name": "rp-identity",
|
|
"location": "[resourceGroup().location]",
|
|
"type": "Microsoft.ManagedIdentity/userAssignedIdentities",
|
|
"apiVersion": "2018-11-30"
|
|
}
|
|
],
|
|
"outputs": {
|
|
"rpServicePrincipalId": {
|
|
"type": "string",
|
|
"value": "[reference(resourceId('Microsoft.ManagedIdentity/userAssignedIdentities', 'rp-identity'), '2018-11-30').principalId]"
|
|
}
|
|
}
|
|
}
|