Skip to content

Commit

Permalink
Alphabetized params & var value
Browse files Browse the repository at this point in the history
  • Loading branch information
jamasten authored Oct 29, 2024
1 parent c643201 commit a0d530f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/bicep/modules/storage-account.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
*/

param blobsPrivateDnsZoneResourceId string
param filesPrivateDnsZoneResourceId string
param keyVaultUri string
param location string
param mlzTags object
param queuesPrivateDnsZoneResourceId string
param serviceToken string
param skuName string
param storageEncryptionKeyName string
param subnetResourceId string
param blobsPrivateDnsZoneResourceId string
param tablesPrivateDnsZoneResourceId string
param queuesPrivateDnsZoneResourceId string
param filesPrivateDnsZoneResourceId string
param tags object
param tier object
param userAssignedIdentityResourceId string
Expand All @@ -25,19 +25,19 @@ var subResources = [
pe: tier.namingConvention.storageAccountBlobPrivateEndpoint
}
{
id: tablesPrivateDnsZoneResourceId
nic: tier.namingConvention.storageAccountTableNetworkInterface
pe: tier.namingConvention.storageAccountTablePrivateEndpoint
id: filesPrivateDnsZoneResourceId
nic: tier.namingConvention.storageAccountFileNetworkInterface
pe: tier.namingConvention.storageAccountFilePrivateEndpoint
}
{
id: queuesPrivateDnsZoneResourceId
nic: tier.namingConvention.storageAccountQueueNetworkInterface
pe: tier.namingConvention.storageAccountQueuePrivateEndpoint
}
{
id: filesPrivateDnsZoneResourceId
nic: tier.namingConvention.storageAccountFileNetworkInterface
pe: tier.namingConvention.storageAccountFilePrivateEndpoint
id: tablesPrivateDnsZoneResourceId
nic: tier.namingConvention.storageAccountTableNetworkInterface
pe: tier.namingConvention.storageAccountTablePrivateEndpoint
}
]

Expand Down

0 comments on commit a0d530f

Please sign in to comment.