Skip to content

Commit 14d422e

Browse files
authored
SKU/Quota clarifications
1 parent 83602a4 commit 14d422e

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Follow these instructions to deploy this example to your Azure subscription, try
8181
- `Microsoft.Storage`
8282
- `Microsoft.Web`
8383

84-
- The subscription must have the following quota available in the region you choose.
84+
- The subscription must have the following quota and SKU availability in the region you choose.
8585

8686
- Application Gateways: 1 WAF_v2 tier instance
8787
- App Service Plans: P1v3 (AZ), 3 instances
@@ -91,7 +91,9 @@ Follow these instructions to deploy this example to your Azure subscription, try
9191
- DDoS Protection Plans: 1
9292
- Public IPv4 Addresses - Standard: 4
9393
- Standard DSv3 Family vCPU: 2
94-
- Storage Accounts: 2
94+
- Grounding with Bing (G1): 1
95+
- Storage Account (Standard_ZRS): 1
96+
- Storage Account (Standard_GZRS): 1
9597

9698
- Your deployment user must have the following permissions at the subscription scope.
9799

infra-as-code/bicep/ai-agent-blob-storage.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ resource agentStorageAccount 'Microsoft.Storage/storageAccounts@2024-01-01' = {
4343
name: 'stagent${baseName}'
4444
location: location
4545
sku: {
46-
name: 'Standard_GZRS'
46+
name: 'Standard_GZRS' // This SKU has limited regional availability https://github.com/MicrosoftDocs/azure-docs/blob/main/includes/storage-redundancy-standard-gzrs.md, if you would like to deploy this implementation to a region outside this list, you'll need to choose a storage SKU that is supported but still meets your workload's non-functional requirements.
4747
}
4848
kind: 'StorageV2'
4949
properties: {

infra-as-code/bicep/web-app-storage.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ resource appDeployStorage 'Microsoft.Storage/storageAccounts@2024-01-01' = {
6161
name: 'stwebapp${baseName}'
6262
location: location
6363
sku: {
64-
name: 'Standard_ZRS'
64+
name: 'Standard_ZRS' // This SKU has limited regional availability https://github.com/MicrosoftDocs/azure-docs/blob/main/includes/storage-redundancy-standard-zrs.md, if you would like to deploy this implementation to a region outside this list, you'll need to choose a storage SKU that is supported but still meets your workload's non-functional requirements.
6565
}
6666
kind: 'StorageV2'
6767
properties: {

0 commit comments

Comments
 (0)