From 8e6ab99d4ad8e440f2b85ee23feaa185ae470fb4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 12 May 2026 04:46:03 +0000 Subject: [PATCH 1/8] Initial plan From 54de939ec9ad128ca7f5ab8dccad6286cd12a664 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 12 May 2026 04:55:41 +0000 Subject: [PATCH 2/8] feat(net-app-account): add Active Directory site support Agent-Logs-Url: https://github.com/Azure/bicep-registry-modules/sessions/dad8a9a7-c97e-4d31-915e-0a1b71b5862a Co-authored-by: fbinotto <17077662+fbinotto@users.noreply.github.com> --- avm/res/net-app/net-app-account/README.md | 11 ++++++++++- avm/res/net-app/net-app-account/main.bicep | 4 ++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/avm/res/net-app/net-app-account/README.md b/avm/res/net-app/net-app-account/README.md index b5e57d7fbf7..1cbf9c2c831 100644 --- a/avm/res/net-app/net-app-account/README.md +++ b/avm/res/net-app/net-app-account/README.md @@ -1,4 +1,4 @@ -# Azure NetApp Files `[Microsoft.NetApp/netAppAccounts]` +# Azure NetApp Files `[Microsoft.netapp/netappaccount]` This module deploys an Azure NetApp Files Account and the associated resource types such as backups, capacity pools and volumes. @@ -1360,6 +1360,7 @@ param tags = { | [`managedIdentities`](#parameter-managedidentities) | object | The managed identity definition for this resource. | | [`roleAssignments`](#parameter-roleassignments) | array | Array of role assignments to create. | | [`serverRootCACertificate`](#parameter-serverrootcacertificate) | string | A server Root certificate is required of ldapOverTLS is enabled. | +| [`site`](#parameter-site) | string | The Active Directory site the service will limit Domain Controller discovery to. | | [`smbServerNamePrefix`](#parameter-smbservernameprefix) | string | Required if domainName is specified. NetBIOS name of the SMB server. A computer account with this prefix will be registered in the AD and used to mount volumes. | | [`snapshotPolicies`](#parameter-snapshotpolicies) | array | The snapshot policies to create. | | [`tags`](#parameter-tags) | object | Tags for all resources. | @@ -2723,6 +2724,14 @@ A server Root certificate is required of ldapOverTLS is enabled. - Type: string - Default: `''` +### Parameter: `site` + +The Active Directory site the service will limit Domain Controller discovery to. + +- Required: No +- Type: string +- Default: `''` + ### Parameter: `smbServerNamePrefix` Required if domainName is specified. NetBIOS name of the SMB server. A computer account with this prefix will be registered in the AD and used to mount volumes. diff --git a/avm/res/net-app/net-app-account/main.bicep b/avm/res/net-app/net-app-account/main.bicep index fdcad984acf..c92488e0c75 100644 --- a/avm/res/net-app/net-app-account/main.bicep +++ b/avm/res/net-app/net-app-account/main.bicep @@ -69,6 +69,9 @@ param lock lockType? @description('Optional. A server Root certificate is required of ldapOverTLS is enabled.') param serverRootCACertificate string = '' +@description('Optional. The Active Directory site the service will limit Domain Controller discovery to.') +param site string = '' + @description('Optional. Tags for all resources.') param tags resourceInput<'Microsoft.NetApp/netAppAccounts@2025-01-01'>.tags? @@ -97,6 +100,7 @@ var activeDirectoryConnectionProperties = [ ldapOverTLS: !empty(domainName) ? ldapOverTLS : false ldapSigning: !empty(domainName) ? ldapSigning : false serverRootCACertificate: !empty(domainName) ? serverRootCACertificate : null + site: !empty(domainName) ? site : null smbServerName: !empty(domainName) ? smbServerNamePrefix : null organizationalUnit: !empty(domainJoinOU) ? domainJoinOU : null allowLocalNfsUsersWithLdap: !empty(domainName) ? allowLocalNfsUsersWithLdap : false From 9affd7b990e8b1fb3f07ebf3edb0658e15f42434 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 12 May 2026 04:57:56 +0000 Subject: [PATCH 3/8] chore(net-app-account): sync compiled template for AD site parameter Agent-Logs-Url: https://github.com/Azure/bicep-registry-modules/sessions/dad8a9a7-c97e-4d31-915e-0a1b71b5862a Co-authored-by: fbinotto <17077662+fbinotto@users.noreply.github.com> --- avm/res/net-app/net-app-account/main.json | 44 +++++++++++++---------- 1 file changed, 26 insertions(+), 18 deletions(-) diff --git a/avm/res/net-app/net-app-account/main.json b/avm/res/net-app/net-app-account/main.json index e83886923e1..c0c32d3e418 100644 --- a/avm/res/net-app/net-app-account/main.json +++ b/avm/res/net-app/net-app-account/main.json @@ -5,8 +5,8 @@ "metadata": { "_generator": { "name": "bicep", - "version": "0.42.1.51946", - "templateHash": "4503424678842499651" + "version": "0.43.8.12551", + "templateHash": "1478394152294243655" }, "name": "Azure NetApp Files", "description": "This module deploys an Azure NetApp Files Account and the associated resource types such as backups, capacity pools and volumes." @@ -1271,6 +1271,13 @@ "description": "Optional. A server Root certificate is required of ldapOverTLS is enabled." } }, + "site": { + "type": "string", + "defaultValue": "", + "metadata": { + "description": "Optional. The Active Directory site the service will limit Domain Controller discovery to." + } + }, "tags": { "type": "object", "metadata": { @@ -1337,6 +1344,7 @@ "ldapOverTLS": "[if(not(empty(parameters('domainName'))), parameters('ldapOverTLS'), false())]", "ldapSigning": "[if(not(empty(parameters('domainName'))), parameters('ldapSigning'), false())]", "serverRootCACertificate": "[if(not(empty(parameters('domainName'))), parameters('serverRootCACertificate'), null())]", + "site": "[if(not(empty(parameters('domainName'))), parameters('site'), null())]", "smbServerName": "[if(not(empty(parameters('domainName'))), parameters('smbServerNamePrefix'), null())]", "organizationalUnit": "[if(not(empty(parameters('domainJoinOU'))), parameters('domainJoinOU'), null())]", "allowLocalNfsUsersWithLdap": "[if(not(empty(parameters('domainName'))), parameters('allowLocalNfsUsersWithLdap'), false())]" @@ -1498,8 +1506,8 @@ "metadata": { "_generator": { "name": "bicep", - "version": "0.42.1.51946", - "templateHash": "184037223586394239" + "version": "0.43.8.12551", + "templateHash": "2430242282388418364" }, "name": "Azure NetApp Files Backup Policy", "description": "This module deploys a Backup Policy for Azure NetApp File." @@ -1679,8 +1687,8 @@ "metadata": { "_generator": { "name": "bicep", - "version": "0.42.1.51946", - "templateHash": "10494004739943739336" + "version": "0.43.8.12551", + "templateHash": "10122502969748585395" }, "name": "Azure NetApp Files Snapshot Policy", "description": "This module deploys a Snapshot Policy for an Azure NetApp File." @@ -2025,8 +2033,8 @@ "metadata": { "_generator": { "name": "bicep", - "version": "0.42.1.51946", - "templateHash": "11230557391605073788" + "version": "0.43.8.12551", + "templateHash": "12569309095828956979" }, "name": "Azure NetApp Files Volume Backup Vault", "description": "This module deploys a NetApp Files Backup Vault." @@ -2197,8 +2205,8 @@ "metadata": { "_generator": { "name": "bicep", - "version": "0.42.1.51946", - "templateHash": "8944427053144847794" + "version": "0.43.8.12551", + "templateHash": "14326005862235618440" }, "name": "Azure NetApp Files Volume Backup", "description": "This module deploys a backup of a NetApp Files Volume." @@ -2437,8 +2445,8 @@ "metadata": { "_generator": { "name": "bicep", - "version": "0.42.1.51946", - "templateHash": "6507019057705966012" + "version": "0.43.8.12551", + "templateHash": "18186745091332759013" }, "name": "Azure NetApp Files Capacity Pools", "description": "This module deploys an Azure NetApp Files Capacity Pool." @@ -3297,8 +3305,8 @@ "metadata": { "_generator": { "name": "bicep", - "version": "0.42.1.51946", - "templateHash": "14589455478287977431" + "version": "0.43.8.12551", + "templateHash": "5637234170335079275" }, "name": "Azure NetApp Files Capacity Pool Volumes", "description": "This module deploys an Azure NetApp Files Capacity Pool Volume." @@ -4146,8 +4154,8 @@ "metadata": { "_generator": { "name": "bicep", - "version": "0.42.1.51946", - "templateHash": "11230557391605073788" + "version": "0.43.8.12551", + "templateHash": "12569309095828956979" }, "name": "Azure NetApp Files Volume Backup Vault", "description": "This module deploys a NetApp Files Backup Vault." @@ -4318,8 +4326,8 @@ "metadata": { "_generator": { "name": "bicep", - "version": "0.42.1.51946", - "templateHash": "8944427053144847794" + "version": "0.43.8.12551", + "templateHash": "14326005862235618440" }, "name": "Azure NetApp Files Volume Backup", "description": "This module deploys a backup of a NetApp Files Volume." From 7821108b555a06adf75d6155be0e7af937a413c5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 12 May 2026 04:58:25 +0000 Subject: [PATCH 4/8] fix(net-app-account): restore canonical resource type casing in README Agent-Logs-Url: https://github.com/Azure/bicep-registry-modules/sessions/dad8a9a7-c97e-4d31-915e-0a1b71b5862a Co-authored-by: fbinotto <17077662+fbinotto@users.noreply.github.com> --- avm/res/net-app/net-app-account/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/avm/res/net-app/net-app-account/README.md b/avm/res/net-app/net-app-account/README.md index 1cbf9c2c831..f9d99b31644 100644 --- a/avm/res/net-app/net-app-account/README.md +++ b/avm/res/net-app/net-app-account/README.md @@ -1,4 +1,4 @@ -# Azure NetApp Files `[Microsoft.netapp/netappaccount]` +# Azure NetApp Files `[Microsoft.NetApp/netAppAccounts]` This module deploys an Azure NetApp Files Account and the associated resource types such as backups, capacity pools and volumes. From 9e92ec758305790421b9c3a2bb099251f32f364b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 12 May 2026 05:01:10 +0000 Subject: [PATCH 5/8] refactor(net-app-account): use activeDirectorySite parameter and null-safe mapping Agent-Logs-Url: https://github.com/Azure/bicep-registry-modules/sessions/dad8a9a7-c97e-4d31-915e-0a1b71b5862a Co-authored-by: fbinotto <17077662+fbinotto@users.noreply.github.com> --- avm/res/net-app/net-app-account/README.md | 4 ++-- avm/res/net-app/net-app-account/main.bicep | 4 ++-- avm/res/net-app/net-app-account/main.json | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/avm/res/net-app/net-app-account/README.md b/avm/res/net-app/net-app-account/README.md index f9d99b31644..deac7b8844e 100644 --- a/avm/res/net-app/net-app-account/README.md +++ b/avm/res/net-app/net-app-account/README.md @@ -1360,7 +1360,7 @@ param tags = { | [`managedIdentities`](#parameter-managedidentities) | object | The managed identity definition for this resource. | | [`roleAssignments`](#parameter-roleassignments) | array | Array of role assignments to create. | | [`serverRootCACertificate`](#parameter-serverrootcacertificate) | string | A server Root certificate is required of ldapOverTLS is enabled. | -| [`site`](#parameter-site) | string | The Active Directory site the service will limit Domain Controller discovery to. | +| [`activeDirectorySite`](#parameter-activedirectorysite) | string | The Active Directory site the service will limit Domain Controller discovery to. | | [`smbServerNamePrefix`](#parameter-smbservernameprefix) | string | Required if domainName is specified. NetBIOS name of the SMB server. A computer account with this prefix will be registered in the AD and used to mount volumes. | | [`snapshotPolicies`](#parameter-snapshotpolicies) | array | The snapshot policies to create. | | [`tags`](#parameter-tags) | object | Tags for all resources. | @@ -2724,7 +2724,7 @@ A server Root certificate is required of ldapOverTLS is enabled. - Type: string - Default: `''` -### Parameter: `site` +### Parameter: `activeDirectorySite` The Active Directory site the service will limit Domain Controller discovery to. diff --git a/avm/res/net-app/net-app-account/main.bicep b/avm/res/net-app/net-app-account/main.bicep index c92488e0c75..335cdd9cc67 100644 --- a/avm/res/net-app/net-app-account/main.bicep +++ b/avm/res/net-app/net-app-account/main.bicep @@ -70,7 +70,7 @@ param lock lockType? param serverRootCACertificate string = '' @description('Optional. The Active Directory site the service will limit Domain Controller discovery to.') -param site string = '' +param activeDirectorySite string = '' @description('Optional. Tags for all resources.') param tags resourceInput<'Microsoft.NetApp/netAppAccounts@2025-01-01'>.tags? @@ -100,7 +100,7 @@ var activeDirectoryConnectionProperties = [ ldapOverTLS: !empty(domainName) ? ldapOverTLS : false ldapSigning: !empty(domainName) ? ldapSigning : false serverRootCACertificate: !empty(domainName) ? serverRootCACertificate : null - site: !empty(domainName) ? site : null + site: !empty(domainName) && !empty(activeDirectorySite) ? activeDirectorySite : null smbServerName: !empty(domainName) ? smbServerNamePrefix : null organizationalUnit: !empty(domainJoinOU) ? domainJoinOU : null allowLocalNfsUsersWithLdap: !empty(domainName) ? allowLocalNfsUsersWithLdap : false diff --git a/avm/res/net-app/net-app-account/main.json b/avm/res/net-app/net-app-account/main.json index c0c32d3e418..fb95b0b734f 100644 --- a/avm/res/net-app/net-app-account/main.json +++ b/avm/res/net-app/net-app-account/main.json @@ -6,7 +6,7 @@ "_generator": { "name": "bicep", "version": "0.43.8.12551", - "templateHash": "1478394152294243655" + "templateHash": "4355380969394344292" }, "name": "Azure NetApp Files", "description": "This module deploys an Azure NetApp Files Account and the associated resource types such as backups, capacity pools and volumes." @@ -1271,7 +1271,7 @@ "description": "Optional. A server Root certificate is required of ldapOverTLS is enabled." } }, - "site": { + "activeDirectorySite": { "type": "string", "defaultValue": "", "metadata": { @@ -1344,7 +1344,7 @@ "ldapOverTLS": "[if(not(empty(parameters('domainName'))), parameters('ldapOverTLS'), false())]", "ldapSigning": "[if(not(empty(parameters('domainName'))), parameters('ldapSigning'), false())]", "serverRootCACertificate": "[if(not(empty(parameters('domainName'))), parameters('serverRootCACertificate'), null())]", - "site": "[if(not(empty(parameters('domainName'))), parameters('site'), null())]", + "site": "[if(and(not(empty(parameters('domainName'))), not(empty(parameters('activeDirectorySite')))), parameters('activeDirectorySite'), null())]", "smbServerName": "[if(not(empty(parameters('domainName'))), parameters('smbServerNamePrefix'), null())]", "organizationalUnit": "[if(not(empty(parameters('domainJoinOU'))), parameters('domainJoinOU'), null())]", "allowLocalNfsUsersWithLdap": "[if(not(empty(parameters('domainName'))), parameters('allowLocalNfsUsersWithLdap'), false())]" From 5d8c62a85b75ef3f73b194a352874ca05af9d03a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 12 May 2026 05:01:55 +0000 Subject: [PATCH 6/8] docs(net-app-account): align activeDirectorySite ordering in README sections Agent-Logs-Url: https://github.com/Azure/bicep-registry-modules/sessions/dad8a9a7-c97e-4d31-915e-0a1b71b5862a Co-authored-by: fbinotto <17077662+fbinotto@users.noreply.github.com> --- avm/res/net-app/net-app-account/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/avm/res/net-app/net-app-account/README.md b/avm/res/net-app/net-app-account/README.md index deac7b8844e..ab528045913 100644 --- a/avm/res/net-app/net-app-account/README.md +++ b/avm/res/net-app/net-app-account/README.md @@ -1339,6 +1339,7 @@ param tags = { | Parameter | Type | Description | | :-- | :-- | :-- | | [`adName`](#parameter-adname) | string | Name of the active directory host as part of Kerberos Realm used for Kerberos authentication. | +| [`activeDirectorySite`](#parameter-activedirectorysite) | string | The Active Directory site the service will limit Domain Controller discovery to. | | [`aesEncryption`](#parameter-aesencryption) | bool | Enable AES encryption on the SMB Server. | | [`allowLocalNfsUsersWithLdap`](#parameter-allowlocalnfsuserswithldap) | bool | If enabled, NFS client local users can also (in addition to LDAP users) access the NFS volumes. | | [`backupPolicies`](#parameter-backuppolicies) | array | The backup policies to create. | @@ -1360,7 +1361,6 @@ param tags = { | [`managedIdentities`](#parameter-managedidentities) | object | The managed identity definition for this resource. | | [`roleAssignments`](#parameter-roleassignments) | array | Array of role assignments to create. | | [`serverRootCACertificate`](#parameter-serverrootcacertificate) | string | A server Root certificate is required of ldapOverTLS is enabled. | -| [`activeDirectorySite`](#parameter-activedirectorysite) | string | The Active Directory site the service will limit Domain Controller discovery to. | | [`smbServerNamePrefix`](#parameter-smbservernameprefix) | string | Required if domainName is specified. NetBIOS name of the SMB server. A computer account with this prefix will be registered in the AD and used to mount volumes. | | [`snapshotPolicies`](#parameter-snapshotpolicies) | array | The snapshot policies to create. | | [`tags`](#parameter-tags) | object | Tags for all resources. | @@ -1380,6 +1380,14 @@ Name of the active directory host as part of Kerberos Realm used for Kerberos au - Type: string - Default: `''` +### Parameter: `activeDirectorySite` + +The Active Directory site the service will limit Domain Controller discovery to. + +- Required: No +- Type: string +- Default: `''` + ### Parameter: `aesEncryption` Enable AES encryption on the SMB Server. @@ -2724,14 +2732,6 @@ A server Root certificate is required of ldapOverTLS is enabled. - Type: string - Default: `''` -### Parameter: `activeDirectorySite` - -The Active Directory site the service will limit Domain Controller discovery to. - -- Required: No -- Type: string -- Default: `''` - ### Parameter: `smbServerNamePrefix` Required if domainName is specified. NetBIOS name of the SMB server. A computer account with this prefix will be registered in the AD and used to mount volumes. From 71653749200778e9049807ecca658190ea962f3d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 12 May 2026 05:02:45 +0000 Subject: [PATCH 7/8] docs(net-app-account): clarify activeDirectorySite description Agent-Logs-Url: https://github.com/Azure/bicep-registry-modules/sessions/dad8a9a7-c97e-4d31-915e-0a1b71b5862a Co-authored-by: fbinotto <17077662+fbinotto@users.noreply.github.com> --- avm/res/net-app/net-app-account/README.md | 4 ++-- avm/res/net-app/net-app-account/main.bicep | 2 +- avm/res/net-app/net-app-account/main.json | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/avm/res/net-app/net-app-account/README.md b/avm/res/net-app/net-app-account/README.md index ab528045913..48afd0876cc 100644 --- a/avm/res/net-app/net-app-account/README.md +++ b/avm/res/net-app/net-app-account/README.md @@ -1339,7 +1339,7 @@ param tags = { | Parameter | Type | Description | | :-- | :-- | :-- | | [`adName`](#parameter-adname) | string | Name of the active directory host as part of Kerberos Realm used for Kerberos authentication. | -| [`activeDirectorySite`](#parameter-activedirectorysite) | string | The Active Directory site the service will limit Domain Controller discovery to. | +| [`activeDirectorySite`](#parameter-activedirectorysite) | string | The Active Directory site (as configured in Active Directory Sites and Services) the service will limit Domain Controller discovery to. | | [`aesEncryption`](#parameter-aesencryption) | bool | Enable AES encryption on the SMB Server. | | [`allowLocalNfsUsersWithLdap`](#parameter-allowlocalnfsuserswithldap) | bool | If enabled, NFS client local users can also (in addition to LDAP users) access the NFS volumes. | | [`backupPolicies`](#parameter-backuppolicies) | array | The backup policies to create. | @@ -1382,7 +1382,7 @@ Name of the active directory host as part of Kerberos Realm used for Kerberos au ### Parameter: `activeDirectorySite` -The Active Directory site the service will limit Domain Controller discovery to. +The Active Directory site (as configured in Active Directory Sites and Services) the service will limit Domain Controller discovery to. - Required: No - Type: string diff --git a/avm/res/net-app/net-app-account/main.bicep b/avm/res/net-app/net-app-account/main.bicep index 335cdd9cc67..c1085e82668 100644 --- a/avm/res/net-app/net-app-account/main.bicep +++ b/avm/res/net-app/net-app-account/main.bicep @@ -69,7 +69,7 @@ param lock lockType? @description('Optional. A server Root certificate is required of ldapOverTLS is enabled.') param serverRootCACertificate string = '' -@description('Optional. The Active Directory site the service will limit Domain Controller discovery to.') +@description('Optional. The Active Directory site (as configured in Active Directory Sites and Services) the service will limit Domain Controller discovery to.') param activeDirectorySite string = '' @description('Optional. Tags for all resources.') diff --git a/avm/res/net-app/net-app-account/main.json b/avm/res/net-app/net-app-account/main.json index fb95b0b734f..a50db7c69eb 100644 --- a/avm/res/net-app/net-app-account/main.json +++ b/avm/res/net-app/net-app-account/main.json @@ -6,7 +6,7 @@ "_generator": { "name": "bicep", "version": "0.43.8.12551", - "templateHash": "4355380969394344292" + "templateHash": "6572652601834220994" }, "name": "Azure NetApp Files", "description": "This module deploys an Azure NetApp Files Account and the associated resource types such as backups, capacity pools and volumes." @@ -1275,7 +1275,7 @@ "type": "string", "defaultValue": "", "metadata": { - "description": "Optional. The Active Directory site the service will limit Domain Controller discovery to." + "description": "Optional. The Active Directory site (as configured in Active Directory Sites and Services) the service will limit Domain Controller discovery to." } }, "tags": { From d5c70980bacda8bcfdef128cbc6a6e66288baa00 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 12 May 2026 05:06:37 +0000 Subject: [PATCH 8/8] docs(net-app-account): add changelog entry for AD site support Agent-Logs-Url: https://github.com/Azure/bicep-registry-modules/sessions/ded5d8b3-0a3d-40be-aa67-f3d1ec9cc39d Co-authored-by: fbinotto <17077662+fbinotto@users.noreply.github.com> --- avm/res/net-app/net-app-account/CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/avm/res/net-app/net-app-account/CHANGELOG.md b/avm/res/net-app/net-app-account/CHANGELOG.md index c6a82519a98..412d90844f8 100644 --- a/avm/res/net-app/net-app-account/CHANGELOG.md +++ b/avm/res/net-app/net-app-account/CHANGELOG.md @@ -2,6 +2,16 @@ The latest version of the changelog can be found [here](https://github.com/Azure/bicep-registry-modules/blob/main/avm/res/net-app/net-app-account/CHANGELOG.md). +## 0.12.2 + +### Changes + +- Added support for configuring the Active Directory site through the new `activeDirectorySite` parameter + +### Breaking Changes + +- None + ## 0.12.1 ### Changes