From 3ec6f8e188806e08f4e51c35e076e7934bd1e313 Mon Sep 17 00:00:00 2001 From: Xiaoyun Zhang Date: Tue, 14 Nov 2023 08:01:23 -0800 Subject: [PATCH] Remove network acl (#236) ## Purpose * ... #219 ## Does this introduce a breaking change? ``` [ ] Yes [ ] No ``` ## Pull Request Type What kind of change does this Pull Request introduce? ``` [ ] Bugfix [ ] Feature [ ] Code style update (formatting, local variables) [ ] Refactoring (no functional changes, no api changes) [ ] Documentation content changes [ ] Other... Please describe: ``` ## How to Test * Get the code ``` git clone [repo-address] cd [repo-name] git checkout [branch-name] npm install ``` * Test the code ``` ``` ## What to Check Verify that the following are valid * ... ## Other Information --- infra/core/ai/cognitiveservices.bicep | 3 --- 1 file changed, 3 deletions(-) diff --git a/infra/core/ai/cognitiveservices.bicep b/infra/core/ai/cognitiveservices.bicep index 4e8d3e85..c8ff0331 100644 --- a/infra/core/ai/cognitiveservices.bicep +++ b/infra/core/ai/cognitiveservices.bicep @@ -18,9 +18,6 @@ resource account 'Microsoft.CognitiveServices/accounts@2023-05-01' = { properties: { customSubDomainName: customSubDomainName publicNetworkAccess: publicNetworkAccess - networkAcls: { - defaultAction: 'Allow' - } } sku: sku }