Skip to content

Commit bf2e279

Browse files
Update default action and blob access settings
1 parent 3fdfb7d commit bf2e279

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

avm/ptn/sa/build-your-own-copilot-solution-accelerator/main.bicep

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -783,9 +783,9 @@ module avmStorageAccount 'br/public:avm/res/storage/storage-account:0.26.2' = {
783783
// WAF aligned networking
784784
networkAcls: {
785785
bypass: 'AzureServices'
786-
defaultAction: enablePrivateNetworking ? 'Deny' : 'Allow'
786+
defaultAction: (enablePrivateNetworking) ? 'Deny' : 'Allow'
787787
}
788-
allowBlobPublicAccess: enablePrivateNetworking ? false : true
788+
allowBlobPublicAccess: (enablePrivateNetworking) ? false : true
789789
publicNetworkAccess: enablePrivateNetworking ? 'Disabled' : 'Enabled'
790790
// Private endpoints for blob and queue
791791
privateEndpoints: enablePrivateNetworking

avm/ptn/sa/build-your-own-copilot-solution-accelerator/main.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"_generator": {
77
"name": "bicep",
88
"version": "0.37.4.10188",
9-
"templateHash": "4557634361415818543"
9+
"templateHash": "3724116069521199783"
1010
},
1111
"name": "Build-your-own-copilot-Solution-Accelerator",
1212
"description": "This module contains the resources required to deploy the [Build-your-own-copilot-Solution-Accelerator](https://github.com/microsoft/Build-your-own-copilot-Solution-Accelerator) for both Sandbox environments and WAF aligned environments.\n> **Note:** This module is not intended for broad, generic use, as it was designed by the Commercial Solution Areas CTO team, as a Microsoft Solution Accelerator. Feature requests and bug fix requests are welcome if they support the needs of this organization but may not be incorporated if they aim to make this module more generic than what it needs to be for its primary use case. This module will likely be updated to leverage AVM resource modules in the future. This may result in breaking changes in upcoming versions when these features are implemented.\n"
@@ -32289,9 +32289,9 @@
3228932289
}
3229032290
},
3229132291
"dependsOn": [
32292-
"[format('avmPrivateDnsZones[{0}]', variables('dnsZoneIndex').cognitiveServices)]",
3229332292
"[format('avmPrivateDnsZones[{0}]', variables('dnsZoneIndex').aiServices)]",
3229432293
"[format('avmPrivateDnsZones[{0}]', variables('dnsZoneIndex').openAI)]",
32294+
"[format('avmPrivateDnsZones[{0}]', variables('dnsZoneIndex').cognitiveServices)]",
3229532295
"logAnalyticsWorkspace",
3229632296
"network",
3229732297
"userAssignedIdentity"

0 commit comments

Comments
 (0)