-
Notifications
You must be signed in to change notification settings - Fork 12
Create storage2.json #7
New issue
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,80 @@ | ||
| { | ||
| "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | ||
| "contentVersion": "1.0.0.0", | ||
| "parameters": { | ||
| "location": { | ||
| "type": "string", | ||
| "defaultValue": "[resourceGroup().location]" | ||
| }, | ||
| "storageAccountName": { | ||
| "type": "string" | ||
| }, | ||
| "accountType": { | ||
| "type": "string", | ||
| "defaultValue": "Standard_LRS", | ||
| "allowedValues": [ | ||
| "Standard_LRS", | ||
| "Standard_GRS", | ||
| "Standard_RAGRS", | ||
| "Standard_ZRS", | ||
| "Premium_LRS", | ||
| "Premium_ZRS", | ||
| "Standard_GZRS", | ||
| "Standard_RAGZRS" | ||
| ] | ||
| }, | ||
| "kind": { | ||
| "type": "string" | ||
| }, | ||
| "accessTier": { | ||
| "type": "string" | ||
| }, | ||
| "containerName": { | ||
| "type": "string" | ||
| }, | ||
| "minimumTlsVersion": { | ||
| "type": "string" | ||
| }, | ||
| "supportsHttpsTrafficOnly": { | ||
| "type": "bool" | ||
| }, | ||
| "allowBlobPublicAccess": { | ||
| "type": "bool" | ||
| } | ||
| }, | ||
| "variables": {}, | ||
| "resources": [ | ||
| { | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| "name": "[parameters('storageAccountName')]", | ||
| "type": "Microsoft.Storage/storageAccounts", | ||
| "apiVersion": "2019-06-01", | ||
| "location": "[parameters('location')]", | ||
| "properties": { | ||
| "accessTier": "[parameters('accessTier')]", | ||
| "minimumTlsVersion": "[parameters('minimumTlsVersion')]", | ||
| "supportsHttpsTrafficOnly": "[parameters('supportsHttpsTrafficOnly')]", | ||
| "allowBlobPublicAccess": "[parameters('allowBlobPublicAccess')]" | ||
| }, | ||
| "dependsOn": [], | ||
| "sku": { | ||
| "name": "[parameters('accountType')]" | ||
| }, | ||
| "kind": "[parameters('kind')]", | ||
| "tags": {}, | ||
| "resources": [ | ||
| { | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| "type": "blobServices/containers", | ||
| "apiVersion": "2019-06-01", | ||
| "name": "[concat('default/', parameters('containerName'))]", | ||
| "properties": { | ||
| "publicAccess": "Container" | ||
| }, | ||
| "dependsOn": [ | ||
| "[parameters('storageAccountName')]" | ||
| ] | ||
| } | ||
| ] | ||
| } | ||
| ], | ||
| "outputs": {} | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Resource: Microsoft.Storage/storageAccounts.[parameters('storageAccountName')] | ID:
BC_AZR_NETWORKING_16How to Fix
Description
Some Microsoft services that interact with storage accounts operate from networks that cannot be granted access through network rules. To help this type of service work as intended, you can allow the set of trusted Microsoft services to bypass the network rules. These services will use strong authentication to access the storage account. Allowing trusted Microsoft services grants access to the storage account for the following services: Azure Backup, Azure Site Recovery, Azure DevTest Labs, Azure Event Grid, Azure Event Hubs, Azure Networking, Azure Monitor and Azure SQL Data Warehouse (when registered in the subscription).Turning on firewall rules for a storage account will block access to incoming requests for data, including from other Azure services, such as using the portal and writing logs. Functionality can be re-enabled. The customer can get access to services like Monitor, Networking, Hubs, and Event Grid by enabling Trusted Microsoft Services through exceptions. Backup and Restore of Virtual Machines using unmanaged disks in storage accounts with network rules applied is supported by creating an exception.
Benchmarks