Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
danycontre committed Nov 11, 2023
1 parent 4d79165 commit ac89980
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion workload/bicep/modules/storageAzureFiles/deploy.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ module storageAndFile '../../../../carml/1.3.0/Microsoft.Storage/storageAccounts
skuName: storageSku
allowBlobPublicAccess: false
publicNetworkAccess: deployPrivateEndpoint ? 'Disabled' : 'Enabled'
kind: ((storageSku =~ 'Premium_LRS') || (storageSku =~ 'Premium_ZRS')) ? 'FileStorage' : 'StorageV2'
kind: ((storageSku == 'Premium_LRS') || (storageSku == 'Premium_ZRS')) ? 'FileStorage' : 'StorageV2'
largeFileSharesState: (storageSku == 'Standard_LRS') || (storageSku == 'Standard_ZRS') ? 'Enabled': 'Disabled'
azureFilesIdentityBasedAuthentication: {
directoryServiceOptions: varDirectoryServiceOptions
activeDirectoryProperties: (identityServiceProvider == 'AAD') ? {
Expand Down

0 comments on commit ac89980

Please sign in to comment.