Skip to content

Commit

Permalink
Update to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderSehr committed Dec 8, 2024
1 parent f649079 commit 2642aa5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions avm/res/net-app/net-app-account/capacity-pool/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -218,4 +218,7 @@ type volumeType = {

@description('Optional. Enables non-browsable property for SMB Shares. Only applicable for SMB/DualProtocol volume.')
smbNonBrowsable: ('Enabled' | 'Disabled')?

@description('Optional. Define if a volume is KerberosEnabled.')
kerberosEnabled: bool?
}
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ param smbContinuouslyAvailable bool = false
])
param smbNonBrowsable string = 'Disabled'

@description('Optional. Define if a volume is KerberosEnabled.')
param kerberosEnabled bool = false

var builtInRoleNames = {
Contributor: subscriptionResourceId('Microsoft.Authorization/roleDefinitions', 'b24988ac-6180-42a0-ab88-20f7382dd24c')
Owner: subscriptionResourceId('Microsoft.Authorization/roleDefinitions', '8e3af657-a8ff-443c-a75c-2fe8c4bcb635')
Expand Down Expand Up @@ -226,6 +229,7 @@ resource volume 'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2024-03-0
smbContinuouslyAvailable: smbContinuouslyAvailable
smbEncryption: smbEncryption
smbNonBrowsable: smbNonBrowsable
kerberosEnabled: kerberosEnabled
}
zones: map(zones, zone => '${zone}')
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ module testDeployment '../../../main.bicep' = {
usageThreshold: 107374182400
}
{
kerberosEnabled: true
exportPolicy: {
rules: [
{
Expand Down

0 comments on commit 2642aa5

Please sign in to comment.