Skip to content

azurerm_netapp_volume - support for the breakthrough_mode_enabled property and netapp API version bump to 2026-05-01 - #33215

Open
paulomarquesc wants to merge 9 commits into
hashicorp:mainfrom
paulomarquesc:pmarques/largevolumesbreakthroughmode
Open

azurerm_netapp_volume - support for the breakthrough_mode_enabled property and netapp API version bump to 2026-05-01#33215
paulomarquesc wants to merge 9 commits into
hashicorp:mainfrom
paulomarquesc:pmarques/largevolumesbreakthroughmode

Conversation

@paulomarquesc

Copy link
Copy Markdown
Contributor

Community Note

  • Please vote on this PR by adding a 👍 reaction to the original PR to help the community and maintainers prioritize for review
  • Please do not leave comments along the lines of "+1", "me too" or "any updates", they generate extra noise for PR followers and do not help prioritize for review

Description

This PR adds support for Azure NetApp Files Breakthrough Mode on large volumes, exposed as a new breakthrough_mode_enabled property on the azurerm_netapp_volume resource and data source.

Breakthrough Mode places a large volume on dedicated capacity, which delivers consistently higher throughput and allows the volume to grow well beyond the standard large volume ceiling (up to 2,400 TiB). The feature is opt-in and requires the subscription to be onboarded to the ANFBreakthroughMode and ANFLargeVolumes features, and is only available in regions where dedicated capacity has been provisioned.

API version bump

breakthroughMode is only present in the NetApp 2026-05-01 API version, so this PR also bumps the NetApp service from 2026-01-01 to 2026-05-01. The delta between the two versions is purely additive — the only change is the new breakthroughMode property on volumeProperties (present in the volumes, volumegroups and snapshotpolicies packages). No existing type, field or method signature changed, so the bump carries no behavioural risk for existing resources.

2026-05-01 was already available in Pandora and in the go-azure-sdk version already pinned in go.mod (v0.20260811.1225050), so no dependency version change was required — only go mod vendor. No vendored file was edited by hand.

Behaviour

  • breakthrough_mode_enabled is ForceNew. The service does not allow a volume to move between single-LIF and multi-LIF configurations, and breakthroughMode is not present on the PATCH model (VolumePatchProperties), so the property cannot be updated in place.
  • The property is only sent to the API when set to true. When it is false the property is omitted entirely rather than sent as Disabled, so subscriptions that are not onboarded to the feature are unaffected by this change.
  • On read, both a null and a Disabled response map to false, so existing volumes and volumes created before this change produce no diff.

Validation

storage_quota_in_gb previously validated to a maximum of 1048576 (1 PiB). Breakthrough Mode volumes may be sized up to 2,400 TiB, so the schema-level maximum has been raised to 2457600 and the per-flavour limits are now enforced in CustomizeDiff:

Volume type Minimum Maximum
Regular 50 102,400 (100 TiB)
Large volume 51,200 (50 TiB) 1,048,576 (1 PiB)
Large volume + Breakthrough Mode 2,400 (2,400 GiB) 2,457,600 (2,400 TiB)

Note that a Breakthrough Mode volume has a lower minimum than a standard large volume, which is why the breakthrough branch is evaluated first.

Two further validations are applied:

  • breakthrough_mode_enabled requires large_volume_enabled to be true.
  • cool_access cannot be configured at the same time a Breakthrough Mode volume is created. Per the service behaviour this restriction applies to create only — cool access may be enabled on a subsequent update — so the check is scoped to create by testing for an empty resource ID in CustomizeDiff.

PR Checklist

  • I have followed the guidelines in our Contributing Documentation.
  • I have checked to ensure there aren't other open Pull Requests for the same update/change.
  • I have checked if my changes close any open issues. If so please include appropriate closing keywords below.
  • I have updated/added Documentation as required written in a helpful and kind way to assist users that may be unfamiliar with the resource / data source.
  • I have used a meaningful PR title to help maintainers and other users understand this change and help prevent duplicate work.
    For example: “resource_name_here - description of change e.g. adding property new_property_name_here

Changes to existing Resource / Data Source

  • I have added an explanation of what my changes do and why I'd like you to include them (This may be covered by linking to an issue above, but may benefit from additional explanation).
  • I have written new tests for my resource or datasource changes & updated any relevant documentation.
  • I have successfully run tests with my changes locally. If not, please provide details on testing challenges that prevented you running the tests.

Testing

  • My submission includes Test coverage as described in the Contribution Guide and the tests pass. (if this is not possible for any reason, please include details of why you did or could not add test coverage)

New acceptance tests on azurerm_netapp_volume:

Test Coverage
TestAccNetAppVolume_breakthroughMode Creates a 2,400 GiB Breakthrough Mode large volume and verifies round-trip via import
TestAccNetAppVolume_breakthroughModeUpdateSize Resizes a Breakthrough Mode volume from 2,400 GiB to 3,000 GiB
TestAccNetAppVolume_breakthroughModeRequiresLargeVolume Asserts the plan fails when large_volume_enabled is false
TestAccNetAppVolume_breakthroughModeConflictsWithCoolAccess Asserts the plan fails when cool_access is configured at create time
TestAccNetAppVolume_breakthroughModeBelowMinimumSize Asserts the plan fails below the 2,400 GiB minimum
TestAccDataSourceNetAppVolume_breakthroughMode Verifies the data source exposes the property

The three negative tests use PlanOnly so they validate CustomizeDiff without provisioning anything.

Because dedicated capacity is only available in specific regions, the Breakthrough Mode tests use their own capacity pool templates pinned to swedencentral via getBreakthroughModeTestLocation(), rather than the westus2/eastus2 pair used by the remaining NetApp volume tests.

$ make acctests SERVICE='netapp' TESTARGS=' -parallel 1 -run=TestAccNetAppVolume_breakthroughMode -count=1' TESTTIMEOUT='1200m'

=== RUN   TestAccNetAppVolume_breakthroughMode
=== PAUSE TestAccNetAppVolume_breakthroughMode
=== RUN   TestAccNetAppVolume_breakthroughModeUpdateSize
=== PAUSE TestAccNetAppVolume_breakthroughModeUpdateSize
=== RUN   TestAccNetAppVolume_breakthroughModeRequiresLargeVolume
=== PAUSE TestAccNetAppVolume_breakthroughModeRequiresLargeVolume
=== RUN   TestAccNetAppVolume_breakthroughModeConflictsWithCoolAccess
=== PAUSE TestAccNetAppVolume_breakthroughModeConflictsWithCoolAccess
=== RUN   TestAccNetAppVolume_breakthroughModeBelowMinimumSize
=== PAUSE TestAccNetAppVolume_breakthroughModeBelowMinimumSize
=== CONT  TestAccNetAppVolume_breakthroughMode
--- PASS: TestAccNetAppVolume_breakthroughMode (937.48s)
=== CONT  TestAccNetAppVolume_breakthroughModeConflictsWithCoolAccess
--- PASS: TestAccNetAppVolume_breakthroughModeConflictsWithCoolAccess (6.89s)
=== CONT  TestAccNetAppVolume_breakthroughModeBelowMinimumSize
--- PASS: TestAccNetAppVolume_breakthroughModeBelowMinimumSize (6.03s)
=== CONT  TestAccNetAppVolume_breakthroughModeRequiresLargeVolume
--- PASS: TestAccNetAppVolume_breakthroughModeRequiresLargeVolume (6.88s)
=== CONT  TestAccNetAppVolume_breakthroughModeUpdateSize
--- PASS: TestAccNetAppVolume_breakthroughModeUpdateSize (1117.52s)
PASS
ok      github.com/hashicorp/terraform-provider-azurerm/internal/services/netapp        2074.833s

The wider NetApp suite can be exercised to confirm the 2026-05-01 bump does not regress existing resources, excluding the Breakthrough Mode, Oracle and SAP HANA volume group tests which require dedicated capacity that is not consistently available in the test subscriptions:

$ make acctests SERVICE='netapp' TESTARGS=' -parallel 1 -skip="breakthroughMode|Oracle|SAPHana" -count=1' TESTTIMEOUT='1200m'

Change Log

Below please provide what should go into the changelog (if anything) conforming to the Changelog Format documented here.

  • dependencies: netapp - update to API version 2026-05-01 [GH-00000]
  • azurerm_netapp_volume - support for the breakthrough_mode_enabled property [GH-00000]

This is a (please select all that apply):

  • Bug Fix
  • New Feature (ie adding a service, resource, or data source)
  • Enhancement
  • Breaking Change

Related Issue(s)

N/A

AI Assistance Disclosure

  • AI Assisted - This contribution was made by, or with the assistance of, AI/LLMs

GitHub Copilot CLI was used to assist with this contribution, covering the API version bump, the schema and CRUD wiring, the acceptance tests, the documentation updates and the example configuration. All changes were reviewed, built, linted and acceptance-tested by the author before submission.

Rollback Plan

If a change needs to be reverted, we will publish an updated version of the provider.

Changes to Security Controls

There are no changes to security controls in this pull request. The new property selects a capacity placement mode for the volume and does not alter access controls, encryption or logging behaviour.

paulomarquesc and others added 7 commits August 19, 2026 09:09
The earlier API version bump commit updated vendor/modules.txt to reference
netapp/2026-05-01 but the generated vendor directory itself was never staged,
while the superseded 2026-01-01 packages remained committed. This left the
branch unbuildable, as the provider imports netapp/2026-05-01/... which was
absent from the vendored tree.

Generated with `go mod vendor`; no vendored file was edited by hand.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copilot-Session: ec2e1e94-684b-4751-8ac4-2511591992d2
paulomarquesc and others added 2 commits August 25, 2026 17:31
Volumes created from a snapshot must use the same network features as the
source volume, otherwise the service rejects the create with
SnapshotVolumeNetworkFeaturesConflictWithNewVolume.

The snapshot, nfsv3FromSnapshot and shortTermClone configurations omitted
network_features on both the source and the restored volume, leaving the
value up to the service default. Because the default is applied
independently for a new volume and for a snapshot restore, the source
could land on Standard while the restored volume was created as Basic,
failing the test.

Pin both sides of each pair to Standard so the configurations no longer
depend on service side defaults.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copilot-Session: ec2e1e94-684b-4751-8ac4-2511591992d2
…plication

The crossZoneRegionReplication configuration creates two data protection
destination volumes, test_cross_zone and test_cross_region, that both
replicate from test_primary. Neither depends on the other, so Terraform
creates them concurrently and the service rejects the second one with
FileSystemAllocationFailed, "Another volume creation is in progress".

crossZoneReplication and crossRegionReplication only create a single
destination volume each and are already serialized by their dependency on
the source volume, which is why they are not affected.

Make test_cross_region depend on test_cross_zone so the two replication
relationships are established one after the other.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copilot-Session: ec2e1e94-684b-4751-8ac4-2511591992d2
@mbfrahry

This comment has been minimized.

@paulomarquesc

Copy link
Copy Markdown
Contributor Author

Posting summary of tests and details.

1) Results summary

83 passed / 6 failed / 0 skipped (89 tests, 19h 15m). Zero drift, zero  non-empty plan , zero  Provider produced inconsistent result , zero deprecation warnings → the  2026-05-01  SDK bump introduced no regressions.

2) Details

pmarques@CPC-pmarq-JEYHU [ ~/go/src/github.com/hashicorp/terraform-provider-azurerm ]$ make acctests SERVICE='netapp' TESTARGS=' -parallel 1 -skip="breakthroughMode|Oracle|SAPHana" -count=1' TESTTIMEOUT='1200m'
TF_ACC=1 go test -v ./internal/services/netapp -parallel 1 -skip="breakthroughMode|Oracle|SAPHana" -count=1 -timeout 1200m -ldflags="-X=github.com/hashicorp/terraform-provider-azurerm/version.ProviderVersion=acc"
=== RUN   TestValidateSlicesEquality
    validation_test.go:91: [DEBUG] Testing [CIFS NFSv3] and [CIFS NFSv3] for true where 'caseSensitive' = true result..
    validation_test.go:91: [DEBUG] Testing [CIFS NFSv3] and [cifs nfsv3] for true where 'caseSensitive' = false result..
    validation_test.go:91: [DEBUG] Testing [CIFS NFSv3] and [NFSv3 CIFS] for true where 'caseSensitive' = true result..
    validation_test.go:91: [DEBUG] Testing [cifs nfsv3] and [NFSv3 CIFS] for true where 'caseSensitive' = false result..
    validation_test.go:91: [DEBUG] Testing [CIFS NFSv3] and [NFSv3] for false where 'caseSensitive' = true result..
    validation_test.go:91: [DEBUG] Testing [CIFS NFSv3] and [nfsv3] for false where 'caseSensitive' = false result..
    validation_test.go:91: [DEBUG] Testing [CIFS] and [NFSv3] for false where 'caseSensitive' = true result..
    validation_test.go:91: [DEBUG] Testing [cifs] and [NFSv3] for false where 'caseSensitive' = false result..
    validation_test.go:91: [DEBUG] Testing [CIFS] and [CIFS] for true where 'caseSensitive' = true result..
    validation_test.go:91: [DEBUG] Testing [cifs] and [CIFS] for true where 'caseSensitive' = false result..
--- PASS: TestValidateSlicesEquality (0.00s)
=== RUN   TestAccDataSourceNetAppAccount_basic
=== PAUSE TestAccDataSourceNetAppAccount_basic
=== RUN   TestAccDataSourceNetAppAccount_systemAssignedManagedIdentity
=== PAUSE TestAccDataSourceNetAppAccount_systemAssignedManagedIdentity
=== RUN   TestAccNetAppAccountEncryptionDataSource_basic
=== PAUSE TestAccNetAppAccountEncryptionDataSource_basic
=== RUN   TestAccNetAppAccountEncryption_cmkSystemAssigned
=== PAUSE TestAccNetAppAccountEncryption_cmkSystemAssigned
=== RUN   TestAccNetAppAccountEncryption_cmkUserAssigned
=== PAUSE TestAccNetAppAccountEncryption_cmkUserAssigned
=== RUN   TestAccNetAppAccountEncryption_updateKey
=== PAUSE TestAccNetAppAccountEncryption_updateKey
=== RUN   TestAccNetAppAccount_sequential
=== RUN   TestAccNetAppAccount_sequential/Resource
=== RUN   TestAccNetAppAccount_sequential/Resource/basic
=== PAUSE TestAccNetAppAccount_sequential/Resource/basic
=== CONT  TestAccNetAppAccount_sequential/Resource/basic
=== RUN   TestAccNetAppAccount_sequential/Resource#01
=== RUN   TestAccNetAppAccount_sequential/Resource#01/requiresImport
=== PAUSE TestAccNetAppAccount_sequential/Resource#01/requiresImport
=== CONT  TestAccNetAppAccount_sequential/Resource#01/requiresImport
=== RUN   TestAccNetAppAccount_sequential/Resource#02
=== RUN   TestAccNetAppAccount_sequential/Resource#02/complete
=== PAUSE TestAccNetAppAccount_sequential/Resource#02/complete
=== CONT  TestAccNetAppAccount_sequential/Resource#02/complete
=== RUN   TestAccNetAppAccount_sequential/Resource#03
=== RUN   TestAccNetAppAccount_sequential/Resource#03/update
=== PAUSE TestAccNetAppAccount_sequential/Resource#03/update
=== CONT  TestAccNetAppAccount_sequential/Resource#03/update
--- PASS: TestAccNetAppAccount_sequential (707.63s)
    --- PASS: TestAccNetAppAccount_sequential/Resource (0.00s)
        --- PASS: TestAccNetAppAccount_sequential/Resource/basic (128.37s)
    --- PASS: TestAccNetAppAccount_sequential/Resource#01 (0.00s)
        --- PASS: TestAccNetAppAccount_sequential/Resource#01/requiresImport (124.90s)
    --- PASS: TestAccNetAppAccount_sequential/Resource#02 (0.00s)
        --- PASS: TestAccNetAppAccount_sequential/Resource#02/complete (145.22s)
    --- PASS: TestAccNetAppAccount_sequential/Resource#03 (0.00s)
        --- PASS: TestAccNetAppAccount_sequential/Resource#03/update (309.13s)
=== RUN   TestAccNetAppAccount_systemAssignedManagedIdentity
=== PAUSE TestAccNetAppAccount_systemAssignedManagedIdentity
=== RUN   TestAccNetAppAccount_userAssignedManagedIdentity
=== PAUSE TestAccNetAppAccount_userAssignedManagedIdentity
=== RUN   TestAccNetAppAccount_updateManagedIdentity
=== PAUSE TestAccNetAppAccount_updateManagedIdentity
=== RUN   TestAccNetAppBackupPolicyDataSource_basic
=== PAUSE TestAccNetAppBackupPolicyDataSource_basic
=== RUN   TestAccNetAppBackupPolicy_basic
=== PAUSE TestAccNetAppBackupPolicy_basic
=== RUN   TestAccNetAppBackupPolicy_complete
=== PAUSE TestAccNetAppBackupPolicy_complete
=== RUN   TestAccNetAppBackupPolicy_update
=== PAUSE TestAccNetAppBackupPolicy_update
=== RUN   TestAccNetAppBackupVaultDataSource_basic
=== PAUSE TestAccNetAppBackupVaultDataSource_basic
=== RUN   TestAccNetAppBackupVault_basic
=== PAUSE TestAccNetAppBackupVault_basic
=== RUN   TestAccNetAppBackupVault_update
=== PAUSE TestAccNetAppBackupVault_update
=== RUN   TestAccDataSourceNetAppPool_basic
=== PAUSE TestAccDataSourceNetAppPool_basic
=== RUN   TestAccNetAppPool_basic
=== PAUSE TestAccNetAppPool_basic
=== RUN   TestAccNetAppPool_requiresImport
=== PAUSE TestAccNetAppPool_requiresImport
=== RUN   TestAccNetAppPool_complete
=== PAUSE TestAccNetAppPool_complete
=== RUN   TestAccNetAppPool_update
=== PAUSE TestAccNetAppPool_update
=== RUN   TestAccNetAppPool_doubleEncryption
=== PAUSE TestAccNetAppPool_doubleEncryption
=== RUN   TestAccNetAppPool_coolAccess
=== PAUSE TestAccNetAppPool_coolAccess
=== RUN   TestAccNetAppPool_flexibleServiceLevel
=== PAUSE TestAccNetAppPool_flexibleServiceLevel
=== RUN   TestAccNetAppPool_flexibleServiceLevelUpdate
=== PAUSE TestAccNetAppPool_flexibleServiceLevelUpdate
=== RUN   TestAccDataSourceNetAppSnapshot_basic
=== PAUSE TestAccDataSourceNetAppSnapshot_basic
=== RUN   TestAccDataSourceNetAppSnapshotPolicy_basic
=== PAUSE TestAccDataSourceNetAppSnapshotPolicy_basic
=== RUN   TestAccNetAppSnapshotPolicy_basic
=== PAUSE TestAccNetAppSnapshotPolicy_basic
=== RUN   TestAccNetAppSnapshotPolicy_hourlySchedule
=== PAUSE TestAccNetAppSnapshotPolicy_hourlySchedule
=== RUN   TestAccNetAppSnapshotPolicy_dailySchedule
=== PAUSE TestAccNetAppSnapshotPolicy_dailySchedule
=== RUN   TestAccNetAppSnapshotPolicy_weeklySchedule
=== PAUSE TestAccNetAppSnapshotPolicy_weeklySchedule
=== RUN   TestAccNetAppSnapshotPolicy_monthlySchedule
=== PAUSE TestAccNetAppSnapshotPolicy_monthlySchedule
=== RUN   TestAccNetAppSnapshotPolicy_requiresImport
=== PAUSE TestAccNetAppSnapshotPolicy_requiresImport
=== RUN   TestAccNetAppSnapshotPolicy_updateSnapshotPolicy
=== PAUSE TestAccNetAppSnapshotPolicy_updateSnapshotPolicy
=== RUN   TestAccNetAppSnapshotPolicy_complete
=== PAUSE TestAccNetAppSnapshotPolicy_complete
=== RUN   TestAccNetAppSnapshot_basic
=== PAUSE TestAccNetAppSnapshot_basic
=== RUN   TestAccNetAppSnapshot_requiresImport
=== PAUSE TestAccNetAppSnapshot_requiresImport
=== RUN   TestAccNetAppSnapshot_complete
=== PAUSE TestAccNetAppSnapshot_complete
=== RUN   TestAccNetAppVolumeBucketCredentialsAction_basic
=== PAUSE TestAccNetAppVolumeBucketCredentialsAction_basic
=== RUN   TestAccDataSourceNetAppVolumeBucket_basic
=== PAUSE TestAccDataSourceNetAppVolumeBucket_basic
=== RUN   TestAccNetAppVolumeBucket_list
--- PASS: TestAccNetAppVolumeBucket_list (797.39s)
=== RUN   TestAccNetAppVolumeBucket_basic
=== PAUSE TestAccNetAppVolumeBucket_basic
=== RUN   TestAccNetAppVolumeBucket_complete
=== PAUSE TestAccNetAppVolumeBucket_complete
=== RUN   TestAccNetAppVolumeBucket_update
=== PAUSE TestAccNetAppVolumeBucket_update
=== RUN   TestAccNetAppVolumeBucket_requiresImport
=== PAUSE TestAccNetAppVolumeBucket_requiresImport
=== RUN   TestAccDataSourceNetAppVolumeBucketWithServer_basic
=== PAUSE TestAccDataSourceNetAppVolumeBucketWithServer_basic
=== RUN   TestAccNetAppVolumeBucketWithServer_basic
=== PAUSE TestAccNetAppVolumeBucketWithServer_basic
=== RUN   TestAccNetAppVolumeBucketWithServer_complete
=== PAUSE TestAccNetAppVolumeBucketWithServer_complete
=== RUN   TestAccNetAppVolumeBucketWithServer_update
=== PAUSE TestAccNetAppVolumeBucketWithServer_update
=== RUN   TestAccNetAppVolumeBucketWithServer_withKeyVault
=== PAUSE TestAccNetAppVolumeBucketWithServer_withKeyVault
=== RUN   TestAccNetAppVolumeBucketWithServer_requiresImport
=== PAUSE TestAccNetAppVolumeBucketWithServer_requiresImport
=== RUN   TestAccDataSourceNetAppVolume_basic
=== PAUSE TestAccDataSourceNetAppVolume_basic
=== RUN   TestAccDataSourceNetAppVolume_backupPolicy
=== PAUSE TestAccDataSourceNetAppVolume_backupPolicy
=== RUN   TestAccDataSourceNetAppVolume_advancedRansomwareProtection
=== PAUSE TestAccDataSourceNetAppVolume_advancedRansomwareProtection
=== RUN   TestAccNetAppVolumeQuotaRuleDataSource_basic
=== PAUSE TestAccNetAppVolumeQuotaRuleDataSource_basic
=== RUN   TestAccNetAppVolumeQuotaRule_individualGroupQuotaType
=== PAUSE TestAccNetAppVolumeQuotaRule_individualGroupQuotaType
=== RUN   TestAccNetAppVolumeQuotaRule_individualUserQuotaType
=== PAUSE TestAccNetAppVolumeQuotaRule_individualUserQuotaType
=== RUN   TestAccNetAppVolumeQuotaRule_defaultGroupQuotaType
=== PAUSE TestAccNetAppVolumeQuotaRule_defaultGroupQuotaType
=== RUN   TestAccNetAppVolumeQuotaRule_defaultUserQuotaType
=== PAUSE TestAccNetAppVolumeQuotaRule_defaultUserQuotaType
=== RUN   TestAccNetAppVolume_basic
=== PAUSE TestAccNetAppVolume_basic
=== RUN   TestAccNetAppVolume_backupPolicy
=== PAUSE TestAccNetAppVolume_backupPolicy
=== RUN   TestAccNetAppVolume_backupPolicyUpdate
=== PAUSE TestAccNetAppVolume_backupPolicyUpdate
=== RUN   TestAccNetAppVolume_availabilityZone
=== PAUSE TestAccNetAppVolume_availabilityZone
=== RUN   TestAccNetAppVolume_nfsv41
=== PAUSE TestAccNetAppVolume_nfsv41
=== RUN   TestAccNetAppVolume_standardNetworkFeature
=== PAUSE TestAccNetAppVolume_standardNetworkFeature
=== RUN   TestAccNetAppVolume_createFromSnapshotInAnotherPool
=== PAUSE TestAccNetAppVolume_createFromSnapshotInAnotherPool
=== RUN   TestAccNetAppVolume_shortTermClone
=== PAUSE TestAccNetAppVolume_shortTermClone
=== RUN   TestAccNetAppVolume_snapshotPolicy
=== PAUSE TestAccNetAppVolume_snapshotPolicy
=== RUN   TestAccNetAppVolume_snapshotPolicyUpdate
=== PAUSE TestAccNetAppVolume_snapshotPolicyUpdate
=== RUN   TestAccNetAppVolume_crossRegionReplication
=== PAUSE TestAccNetAppVolume_crossRegionReplication
=== RUN   TestAccNetAppVolume_crossZoneReplication
=== PAUSE TestAccNetAppVolume_crossZoneReplication
=== RUN   TestAccNetAppVolume_crossZoneRegionReplication
=== PAUSE TestAccNetAppVolume_crossZoneRegionReplication
=== RUN   TestAccNetAppVolume_nfsv3FromSnapshot
=== PAUSE TestAccNetAppVolume_nfsv3FromSnapshot
=== RUN   TestAccNetAppVolume_nfsv3SnapshotDirectoryVisibleFalse
=== PAUSE TestAccNetAppVolume_nfsv3SnapshotDirectoryVisibleFalse
=== RUN   TestAccNetAppVolume_nfsv3SnapshotDirectoryVisibleTrue
=== PAUSE TestAccNetAppVolume_nfsv3SnapshotDirectoryVisibleTrue
=== RUN   TestAccNetAppVolume_requiresImport
=== PAUSE TestAccNetAppVolume_requiresImport
=== RUN   TestAccNetAppVolume_complete
=== PAUSE TestAccNetAppVolume_complete
=== RUN   TestAccNetAppVolume_largeVolume
=== PAUSE TestAccNetAppVolume_largeVolume
=== RUN   TestAccNetAppVolume_update
=== PAUSE TestAccNetAppVolume_update
=== RUN   TestAccNetAppVolume_updateExportPolicyRule
=== PAUSE TestAccNetAppVolume_updateExportPolicyRule
=== RUN   TestAccNetAppVolume_volEncryptionCmkUserAssigned
=== PAUSE TestAccNetAppVolume_volEncryptionCmkUserAssigned
=== RUN   TestAccNetAppVolume_volEncryptionCmkSystemAssigned
=== PAUSE TestAccNetAppVolume_volEncryptionCmkSystemAssigned
=== RUN   TestAccNetAppVolume_serviceLevelUpdate
=== PAUSE TestAccNetAppVolume_serviceLevelUpdate
=== RUN   TestAccNetAppVolume_coolAccess
=== PAUSE TestAccNetAppVolume_coolAccess
=== RUN   TestAccNetAppVolume_protocolConversion
=== PAUSE TestAccNetAppVolume_protocolConversion
=== RUN   TestAccNetAppVolume_advancedRansomwareProtection
=== PAUSE TestAccNetAppVolume_advancedRansomwareProtection
=== RUN   TestAccNetAppVolume_advancedRansomwareProtectionUpdate
=== PAUSE TestAccNetAppVolume_advancedRansomwareProtectionUpdate
=== CONT  TestAccDataSourceNetAppAccount_basic
--- PASS: TestAccDataSourceNetAppAccount_basic (116.61s)
=== CONT  TestAccNetAppVolumeBucket_requiresImport
=== CONT  TestAccNetAppVolume_advancedRansomwareProtectionUpdate
--- PASS: TestAccNetAppVolumeBucket_requiresImport (875.38s)
--- PASS: TestAccNetAppVolume_advancedRansomwareProtectionUpdate (840.73s)
=== CONT  TestAccNetAppVolume_advancedRansomwareProtection
--- PASS: TestAccNetAppVolume_advancedRansomwareProtection (716.63s)
=== CONT  TestAccNetAppVolume_protocolConversion
--- PASS: TestAccNetAppVolume_protocolConversion (969.41s)
=== CONT  TestAccNetAppVolume_coolAccess
--- PASS: TestAccNetAppVolume_coolAccess (1213.29s)
=== CONT  TestAccNetAppVolume_serviceLevelUpdate
--- PASS: TestAccNetAppVolume_serviceLevelUpdate (914.97s)
=== CONT  TestAccNetAppVolume_volEncryptionCmkSystemAssigned
=== CONT  TestAccNetAppVolume_volEncryptionCmkUserAssigned
--- PASS: TestAccNetAppVolume_volEncryptionCmkSystemAssigned (1049.95s)
--- PASS: TestAccNetAppVolume_volEncryptionCmkUserAssigned (1050.84s)
=== CONT  TestAccNetAppVolume_updateExportPolicyRule
--- PASS: TestAccNetAppVolume_updateExportPolicyRule (852.30s)
=== CONT  TestAccNetAppVolume_update
--- PASS: TestAccNetAppVolume_update (849.78s)
=== CONT  TestAccNetAppVolume_largeVolume
--- PASS: TestAccNetAppVolume_largeVolume (858.95s)
=== CONT  TestAccNetAppVolume_complete
--- PASS: TestAccNetAppVolume_complete (717.58s)
=== CONT  TestAccNetAppVolume_requiresImport
--- PASS: TestAccNetAppVolume_requiresImport (736.59s)
=== CONT  TestAccNetAppVolume_nfsv3SnapshotDirectoryVisibleTrue
--- PASS: TestAccNetAppVolume_nfsv3SnapshotDirectoryVisibleTrue (698.20s)
=== CONT  TestAccNetAppVolume_nfsv3SnapshotDirectoryVisibleFalse
--- PASS: TestAccNetAppVolume_nfsv3SnapshotDirectoryVisibleFalse (733.83s)
=== CONT  TestAccNetAppVolume_nfsv3FromSnapshot
    testcase.go:363: Step 1/2 error: Error running apply: exit status 1

        Error: creating Volume (Subscription: "66bc9830-19b6-4987-94d2-0e487be7aa47"
        Resource Group Name: "acctestRG-netapp-260825201605432830"
        Net App Account Name: "acctest-NetAppAccount-260825201605432830"
        Capacity Pool Name: "acctest-NetAppPool-260825201605432830"
        Volume Name: "acctest-NetAppVolume-NewFromSnapshot-260825201605432830"): polling after CreateOrUpdate: polling failed: the Azure API returned the following error:

        Status: "Failed"
        Code: "Conflict"
        Message: "Network features specified for the new volume ('Basic') restored from a snapshot, conflicts with effective network features of the source volume ('Standard'). Please specify 'Standard' as the Network Features for the new volume and try again."
        Activity Id: ""

        ---

        API Response:

        ----[start]----
        {"id":"/subscriptions/66bc9830-19b6-4987-94d2-0e487be7aa47/providers/Microsoft.NetApp/locations/westus2/operationResults/a1957e82-5107-488b-ad8c-d2121bc239db","name":"a1957e82-5107-488b-ad8c-d2121bc239db","status":"Failed","startTime":"2026-08-26T00:04:04.5791688Z","endTime":"2026-08-26T00:04:07.6323798Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/66bc9830-19b6-4987-94d2-0e487be7aa47/resourceGroups/acctestRG-netapp-260825201605432830/providers/Microsoft.NetApp/netAppAccounts/acctest-NetAppAccount-260825201605432830/capacityPools/acctest-NetAppPool-260825201605432830/volumes/acctest-NetAppVolume-NewFromSnapshot-260825201605432830","action":"CREATE"},"error":{"code":"Conflict","message":"Network features specified for the new volume ('Basic') restored from a snapshot, conflicts with effective network features of the source volume ('Standard'). Please specify 'Standard' as the Network Features for the new volume and try again.","details":[{"code":"SnapshotVolumeNetworkFeaturesConflictWithNewVolume","message":"Network features specified for the new volume ('Basic') restored from a snapshot, conflicts with effective network features of the source volume ('Standard'). Please specify 'Standard' as the Network Features for the new volume and try again."}]}}
        -----[end]-----


          with azurerm_netapp_volume.test_snapshot_vol,
          on terraform_plugin_test.tf line 158, in resource "azurerm_netapp_volume" "test_snapshot_vol":
         158: resource "azurerm_netapp_volume" "test_snapshot_vol" {

    panic.go:694: Error running post-test destroy, there may be dangling resources: exit status 1

        Error: deleting Capacity Pool (Subscription: "66bc9830-19b6-4987-94d2-0e487be7aa47"
        Resource Group Name: "acctestRG-netapp-260825201605432830"
        Net App Account Name: "acctest-NetAppAccount-260825201605432830"
        Capacity Pool Name: "acctest-NetAppPool-260825201605432830"): polling after PoolsDelete: context deadline exceeded

--- FAIL: TestAccNetAppVolume_nfsv3FromSnapshot (2486.25s)
=== CONT  TestAccNetAppVolume_crossZoneRegionReplication
    testcase.go:363: Step 1/2 error: Error running apply: exit status 1

        Error: creating Volume (Subscription: "66bc9830-19b6-4987-94d2-0e487be7aa47"
        Resource Group Name: "acctestRG-netapp-260825201605430299"
        Net App Account Name: "acctest-NetAppAccount-secondary-260825201605430299"
        Capacity Pool Name: "acctest-NetAppPool-secondary-260825201605430299"
        Volume Name: "acctest-NetAppVolume-cross-region-260825201605430299"): polling after CreateOrUpdate: polling failed: the Azure API returned the following error:

        Status: "Failed"
        Code: "Conflict"
        Message: "Unable to create volume 'acctest-NetAppVolume-cross-region-260825201605430299'. Another volume creation is in progress. Please try again in a few minutes."
        Activity Id: ""

        ---

        API Response:

        ----[start]----
        {"id":"/subscriptions/66bc9830-19b6-4987-94d2-0e487be7aa47/providers/Microsoft.NetApp/locations/eastus2/operationResults/6f634626-61ec-4a8f-a04a-ddf8e5fad958","name":"6f634626-61ec-4a8f-a04a-ddf8e5fad958","status":"Failed","startTime":"2026-08-26T00:45:41.9904994Z","endTime":"2026-08-26T00:57:37.7295665Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/66bc9830-19b6-4987-94d2-0e487be7aa47/resourceGroups/acctestRG-netapp-260825201605430299/providers/Microsoft.NetApp/netAppAccounts/acctest-NetAppAccount-secondary-260825201605430299/capacityPools/acctest-NetAppPool-secondary-260825201605430299/volumes/acctest-NetAppVolume-cross-region-260825201605430299","action":"CREATE"},"error":{"code":"Conflict","message":"Unable to create volume 'acctest-NetAppVolume-cross-region-260825201605430299'. Another volume creation is in progress. Please try again in a few minutes.","details":[{"code":"FileSystemAllocationFailed","message":"Unable to create volume 'acctest-NetAppVolume-cross-region-260825201605430299'. Another volume creation is in progress. Please try again in a few minutes."}]}}
        -----[end]-----


          with azurerm_netapp_volume.test_cross_region,
          on terraform_plugin_test.tf line 286, in resource "azurerm_netapp_volume" "test_cross_region":
         286: resource "azurerm_netapp_volume" "test_cross_region" {

    panic.go:694: Error running post-test destroy, there may be dangling resources: exit status 1

        Error: deleting Capacity Pool (Subscription: "66bc9830-19b6-4987-94d2-0e487be7aa47"
        Resource Group Name: "acctestRG-netapp-260825201605430299"
        Net App Account Name: "acctest-NetAppAccount-secondary-260825201605430299"
        Capacity Pool Name: "acctest-NetAppPool-secondary-260825201605430299"): polling after PoolsDelete: context deadline exceeded

--- FAIL: TestAccNetAppVolume_crossZoneRegionReplication (3021.55s)
=== CONT  TestAccNetAppVolume_crossZoneReplication
--- PASS: TestAccNetAppVolume_crossZoneReplication (1639.37s)
=== CONT  TestAccNetAppVolume_crossRegionReplication
    testcase.go:363: Step 1/2 error: Error running apply: exit status 1

        Error: creating Volume (Subscription: "66bc9830-19b6-4987-94d2-0e487be7aa47"
        Resource Group Name: "acctestRG-netapp-260825201605433649"
        Net App Account Name: "acctest-NetAppAccount-secondary-260825201605433649"
        Capacity Pool Name: "acctest-NetAppPool-secondary-260825201605433649"
        Volume Name: "acctest-NetAppVolume-secondary-260825201605433649"): polling after CreateOrUpdate: polling failed: the Azure API returned the following error:

        Status: "Failed"
        Code: "Conflict"
        Message: "Unable to create volume 'acctest-NetAppVolume-secondary-260825201605433649'. Another volume creation is in progress. Please try again in a few minutes."
        Activity Id: ""

        ---

        API Response:

        ----[start]----
        {"id":"/subscriptions/66bc9830-19b6-4987-94d2-0e487be7aa47/providers/Microsoft.NetApp/locations/eastus2/operationResults/06957cd8-3fc7-4b4e-bf3b-ae552d7f9bd8","name":"06957cd8-3fc7-4b4e-bf3b-ae552d7f9bd8","status":"Failed","startTime":"2026-08-26T02:02:59.6787382Z","endTime":"2026-08-26T02:15:00.8726688Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/66bc9830-19b6-4987-94d2-0e487be7aa47/resourceGroups/acctestRG-netapp-260825201605433649/providers/Microsoft.NetApp/netAppAccounts/acctest-NetAppAccount-secondary-260825201605433649/capacityPools/acctest-NetAppPool-secondary-260825201605433649/volumes/acctest-NetAppVolume-secondary-260825201605433649","action":"CREATE"},"error":{"code":"Conflict","message":"Unable to create volume 'acctest-NetAppVolume-secondary-260825201605433649'. Another volume creation is in progress. Please try again in a few minutes.","details":[{"code":"FileSystemAllocationFailed","message":"Unable to create volume 'acctest-NetAppVolume-secondary-260825201605433649'. Another volume creation is in progress. Please try again in a few minutes."}]}}
        -----[end]-----


          with azurerm_netapp_volume.test_secondary,
          on terraform_plugin_test.tf line 206, in resource "azurerm_netapp_volume" "test_secondary":
         206: resource "azurerm_netapp_volume" "test_secondary" {

    panic.go:694: Error running post-test destroy, there may be dangling resources: exit status 1

        Error: deleting Capacity Pool (Subscription: "66bc9830-19b6-4987-94d2-0e487be7aa47"
        Resource Group Name: "acctestRG-netapp-260825201605433649"
        Net App Account Name: "acctest-NetAppAccount-secondary-260825201605433649"
        Capacity Pool Name: "acctest-NetAppPool-secondary-260825201605433649"): polling after PoolsDelete: context deadline exceeded

--- FAIL: TestAccNetAppVolume_crossRegionReplication (3001.00s)
=== CONT  TestAccNetAppVolume_snapshotPolicyUpdate
--- PASS: TestAccNetAppVolume_snapshotPolicyUpdate (878.97s)
=== CONT  TestAccNetAppVolume_snapshotPolicy
--- PASS: TestAccNetAppVolume_snapshotPolicy (794.32s)
=== CONT  TestAccNetAppVolume_shortTermClone
    testcase.go:363: Step 1/2 error: Error running apply: exit status 1

        Error: creating Volume (Subscription: "66bc9830-19b6-4987-94d2-0e487be7aa47"
        Resource Group Name: "acctestRG-netapp-260825201605436666"
        Net App Account Name: "acctest-NetAppAccount-260825201605436666"
        Capacity Pool Name: "acctest-NetAppPool-260825201605436666"
        Volume Name: "acctest-NetAppVolume-ShortTermClone-260825201605436666"): polling after CreateOrUpdate: polling failed: the Azure API returned the following error:

        Status: "Failed"
        Code: "Conflict"
        Message: "Network features specified for the new volume ('Basic') restored from a snapshot, conflicts with effective network features of the source volume ('Standard'). Please specify 'Standard' as the Network Features for the new volume and try again."
        Activity Id: ""

        ---

        API Response:

        ----[start]----
        {"id":"/subscriptions/66bc9830-19b6-4987-94d2-0e487be7aa47/providers/Microsoft.NetApp/locations/westus2/operationResults/c23a0581-a4ed-4044-aec1-0bf6f83466af","name":"c23a0581-a4ed-4044-aec1-0bf6f83466af","status":"Failed","startTime":"2026-08-26T03:21:17.143666Z","endTime":"2026-08-26T03:21:20.416898Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/66bc9830-19b6-4987-94d2-0e487be7aa47/resourceGroups/acctestRG-netapp-260825201605436666/providers/Microsoft.NetApp/netAppAccounts/acctest-NetAppAccount-260825201605436666/capacityPools/acctest-NetAppPool-260825201605436666/volumes/acctest-NetAppVolume-ShortTermClone-260825201605436666","action":"CREATE"},"error":{"code":"Conflict","message":"Network features specified for the new volume ('Basic') restored from a snapshot, conflicts with effective network features of the source volume ('Standard'). Please specify 'Standard' as the Network Features for the new volume and try again.","details":[{"code":"SnapshotVolumeNetworkFeaturesConflictWithNewVolume","message":"Network features specified for the new volume ('Basic') restored from a snapshot, conflicts with effective network features of the source volume ('Standard'). Please specify 'Standard' as the Network Features for the new volume and try again."}]}}
        -----[end]-----


          with azurerm_netapp_volume.test,
          on terraform_plugin_test.tf line 146, in resource "azurerm_netapp_volume" "test":
         146: resource "azurerm_netapp_volume" "test" {

    panic.go:694: Error running post-test destroy, there may be dangling resources: exit status 1

        Error: deleting Capacity Pool (Subscription: "66bc9830-19b6-4987-94d2-0e487be7aa47"
        Resource Group Name: "acctestRG-netapp-260825201605436666"
        Net App Account Name: "acctest-NetAppAccount-260825201605436666"
        Capacity Pool Name: "acctest-NetAppPool-260825201605436666"): polling after PoolsDelete: context deadline exceeded

--- FAIL: TestAccNetAppVolume_shortTermClone (2521.21s)
=== CONT  TestAccNetAppVolume_createFromSnapshotInAnotherPool
    testcase.go:363: Step 1/2 error: Error running apply: exit status 1

        Error: creating Volume (Subscription: "66bc9830-19b6-4987-94d2-0e487be7aa47"
        Resource Group Name: "acctestRG-netapp-260825201605433956"
        Net App Account Name: "acctest-NetAppAccount-260825201605433956"
        Capacity Pool Name: "acctest-NetAppPool-secondary-260825201605433956"
        Volume Name: "acctest-NetAppVolume-WithSnapshotPolicy-260825201605433956"): polling after CreateOrUpdate: polling failed: the Azure API returned the following error:

        Status: "Failed"
        Code: "Conflict"
        Message: "Network features specified for the new volume ('Basic') restored from a snapshot, conflicts with effective network features of the source volume ('Standard'). Please specify 'Standard' as the Network Features for the new volume and try again."
        Activity Id: ""

        ---

        API Response:

        ----[start]----
        {"id":"/subscriptions/66bc9830-19b6-4987-94d2-0e487be7aa47/providers/Microsoft.NetApp/locations/westus2/operationResults/09add148-5281-48e3-9432-d332d1570305","name":"09add148-5281-48e3-9432-d332d1570305","status":"Failed","startTime":"2026-08-26T04:03:14.2184801Z","endTime":"2026-08-26T04:03:17.7803651Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/66bc9830-19b6-4987-94d2-0e487be7aa47/resourceGroups/acctestRG-netapp-260825201605433956/providers/Microsoft.NetApp/netAppAccounts/acctest-NetAppAccount-260825201605433956/capacityPools/acctest-NetAppPool-secondary-260825201605433956/volumes/acctest-NetAppVolume-WithSnapshotPolicy-260825201605433956","action":"CREATE"},"error":{"code":"Conflict","message":"Network features specified for the new volume ('Basic') restored from a snapshot, conflicts with effective network features of the source volume ('Standard'). Please specify 'Standard' as the Network Features for the new volume and try again.","details":[{"code":"SnapshotVolumeNetworkFeaturesConflictWithNewVolume","message":"Network features specified for the new volume ('Basic') restored from a snapshot, conflicts with effective network features of the source volume ('Standard'). Please specify 'Standard' as the Network Features for the new volume and try again."}]}}
        -----[end]-----


          with azurerm_netapp_volume.test,
          on terraform_plugin_test.tf line 156, in resource "azurerm_netapp_volume" "test":
         156: resource "azurerm_netapp_volume" "test" {

    panic.go:694: Error running post-test destroy, there may be dangling resources: exit status 1

        Error: deleting Capacity Pool (Subscription: "66bc9830-19b6-4987-94d2-0e487be7aa47"
        Resource Group Name: "acctestRG-netapp-260825201605433956"
        Net App Account Name: "acctest-NetAppAccount-260825201605433956"
        Capacity Pool Name: "acctest-NetAppPool-secondary-260825201605433956"): polling after PoolsDelete: context deadline exceeded

--- FAIL: TestAccNetAppVolume_createFromSnapshotInAnotherPool (2308.39s)
=== CONT  TestAccNetAppVolume_standardNetworkFeature
--- PASS: TestAccNetAppVolume_standardNetworkFeature (724.54s)
=== CONT  TestAccNetAppVolume_nfsv41
--- PASS: TestAccNetAppVolume_nfsv41 (723.91s)
=== CONT  TestAccNetAppVolume_availabilityZone
--- PASS: TestAccNetAppVolume_availabilityZone (704.80s)
=== CONT  TestAccNetAppVolume_backupPolicyUpdate
--- PASS: TestAccNetAppVolume_backupPolicyUpdate (1502.34s)
=== CONT  TestAccDataSourceNetAppVolume_backupPolicy
    testcase.go:363: Error running post-test destroy, there may be dangling resources: exit status 1

        Error: deleting Volume (Subscription: "66bc9830-19b6-4987-94d2-0e487be7aa47"
        Resource Group Name: "acctestRG-netapp-260825201605423181"
        Net App Account Name: "acctest-NetAppAccount-260825201605423181"
        Capacity Pool Name: "acctest-NetAppPool-260825201605423181"
        Volume Name: "acctest-NetAppVolume-260825201605423181"): polling after Delete: context deadline exceeded

--- FAIL: TestAccDataSourceNetAppVolume_backupPolicy (4232.98s)
=== CONT  TestAccDataSourceNetAppVolume_basic
--- PASS: TestAccDataSourceNetAppVolume_basic (707.64s)
=== CONT  TestAccNetAppVolumeBucketWithServer_requiresImport
--- PASS: TestAccNetAppVolumeBucketWithServer_requiresImport (866.43s)
=== CONT  TestAccNetAppVolumeBucketWithServer_withKeyVault
--- PASS: TestAccNetAppVolumeBucketWithServer_withKeyVault (884.56s)
=== CONT  TestAccNetAppVolumeBucketWithServer_update
--- PASS: TestAccNetAppVolumeBucketWithServer_update (916.30s)
=== CONT  TestAccNetAppVolumeBucketWithServer_complete
--- PASS: TestAccNetAppVolumeBucketWithServer_complete (838.42s)
=== CONT  TestAccNetAppVolumeBucketWithServer_basic
--- PASS: TestAccNetAppVolumeBucketWithServer_basic (841.89s)
=== CONT  TestAccDataSourceNetAppVolumeBucketWithServer_basic
--- PASS: TestAccDataSourceNetAppVolumeBucketWithServer_basic (818.29s)
=== CONT  TestAccNetAppVolumeQuotaRule_defaultGroupQuotaType
=== CONT  TestAccNetAppVolume_backupPolicy
--- PASS: TestAccNetAppVolumeQuotaRule_defaultGroupQuotaType (939.86s)
--- PASS: TestAccNetAppVolume_backupPolicy (1395.71s)
=== CONT  TestAccNetAppVolume_basic
--- PASS: TestAccNetAppVolume_basic (726.54s)
=== CONT  TestAccNetAppVolumeQuotaRule_defaultUserQuotaType
--- PASS: TestAccNetAppVolumeQuotaRule_defaultUserQuotaType (966.90s)
=== CONT  TestAccNetAppPool_coolAccess
--- PASS: TestAccNetAppPool_coolAccess (308.53s)
=== CONT  TestAccNetAppVolumeBucket_update
--- PASS: TestAccNetAppVolumeBucket_update (969.56s)
=== CONT  TestAccNetAppVolumeBucket_complete
--- PASS: TestAccNetAppVolumeBucket_complete (855.91s)
=== CONT  TestAccNetAppVolumeBucket_basic
--- PASS: TestAccNetAppVolumeBucket_basic (865.29s)
=== CONT  TestAccDataSourceNetAppVolumeBucket_basic
--- PASS: TestAccDataSourceNetAppVolumeBucket_basic (870.92s)
=== CONT  TestAccNetAppVolumeBucketCredentialsAction_basic
--- PASS: TestAccNetAppVolumeBucketCredentialsAction_basic (830.03s)
=== CONT  TestAccNetAppSnapshot_complete
--- PASS: TestAccNetAppSnapshot_complete (819.71s)
=== CONT  TestAccNetAppSnapshot_requiresImport
--- PASS: TestAccNetAppSnapshot_requiresImport (864.83s)
=== CONT  TestAccNetAppSnapshot_basic
--- PASS: TestAccNetAppSnapshot_basic (864.39s)
=== CONT  TestAccDataSourceNetAppVolume_advancedRansomwareProtection
--- PASS: TestAccDataSourceNetAppVolume_advancedRansomwareProtection (715.01s)
=== CONT  TestAccNetAppVolumeQuotaRule_individualUserQuotaType
--- PASS: TestAccNetAppVolumeQuotaRule_individualUserQuotaType (965.65s)
=== CONT  TestAccNetAppSnapshotPolicy_complete
--- PASS: TestAccNetAppSnapshotPolicy_complete (292.99s)
=== CONT  TestAccNetAppVolumeQuotaRule_individualGroupQuotaType
--- PASS: TestAccNetAppVolumeQuotaRule_individualGroupQuotaType (934.19s)
=== CONT  TestAccNetAppVolumeQuotaRuleDataSource_basic
--- PASS: TestAccNetAppVolumeQuotaRuleDataSource_basic (914.51s)
=== CONT  TestAccNetAppSnapshotPolicy_updateSnapshotPolicy
--- PASS: TestAccNetAppSnapshotPolicy_updateSnapshotPolicy (359.07s)
=== CONT  TestAccNetAppSnapshotPolicy_requiresImport
--- PASS: TestAccNetAppSnapshotPolicy_requiresImport (301.26s)
=== CONT  TestAccNetAppBackupPolicy_complete
--- PASS: TestAccNetAppBackupPolicy_complete (201.91s)
=== CONT  TestAccNetAppSnapshotPolicy_monthlySchedule
--- PASS: TestAccNetAppSnapshotPolicy_monthlySchedule (292.34s)
=== CONT  TestAccNetAppPool_doubleEncryption
--- PASS: TestAccNetAppPool_doubleEncryption (237.70s)
=== CONT  TestAccNetAppSnapshotPolicy_weeklySchedule
--- PASS: TestAccNetAppSnapshotPolicy_weeklySchedule (297.00s)
=== CONT  TestAccNetAppPool_update
--- PASS: TestAccNetAppPool_update (359.65s)
=== CONT  TestAccNetAppSnapshotPolicy_dailySchedule
--- PASS: TestAccNetAppSnapshotPolicy_dailySchedule (296.29s)
=== CONT  TestAccNetAppPool_complete
--- PASS: TestAccNetAppPool_complete (237.36s)
=== CONT  TestAccNetAppSnapshotPolicy_hourlySchedule
--- PASS: TestAccNetAppSnapshotPolicy_hourlySchedule (291.12s)
=== CONT  TestAccNetAppBackupVault_update
--- PASS: TestAccNetAppBackupVault_update (273.58s)
=== CONT  TestAccNetAppSnapshotPolicy_basic
--- PASS: TestAccNetAppSnapshotPolicy_basic (292.39s)
=== CONT  TestAccNetAppBackupVaultDataSource_basic
--- PASS: TestAccNetAppBackupVaultDataSource_basic (200.33s)
=== CONT  TestAccDataSourceNetAppSnapshotPolicy_basic
--- PASS: TestAccDataSourceNetAppSnapshotPolicy_basic (278.68s)
=== CONT  TestAccNetAppBackupPolicy_update
--- PASS: TestAccNetAppBackupPolicy_update (260.33s)
=== CONT  TestAccDataSourceNetAppSnapshot_basic
--- PASS: TestAccDataSourceNetAppSnapshot_basic (842.74s)
=== CONT  TestAccNetAppPool_flexibleServiceLevel
--- PASS: TestAccNetAppPool_flexibleServiceLevel (242.00s)
=== CONT  TestAccNetAppPool_flexibleServiceLevelUpdate
--- PASS: TestAccNetAppPool_flexibleServiceLevelUpdate (298.03s)
=== CONT  TestAccNetAppPool_basic
--- PASS: TestAccNetAppPool_basic (239.88s)
=== CONT  TestAccNetAppAccount_systemAssignedManagedIdentity
--- PASS: TestAccNetAppAccount_systemAssignedManagedIdentity (127.47s)
=== CONT  TestAccNetAppPool_requiresImport
--- PASS: TestAccNetAppPool_requiresImport (242.80s)
=== CONT  TestAccNetAppBackupPolicy_basic
--- PASS: TestAccNetAppBackupPolicy_basic (202.57s)
=== CONT  TestAccNetAppAccountEncryption_cmkSystemAssigned
--- PASS: TestAccNetAppAccountEncryption_cmkSystemAssigned (392.10s)
=== CONT  TestAccNetAppBackupPolicyDataSource_basic
--- PASS: TestAccNetAppBackupPolicyDataSource_basic (185.32s)
=== CONT  TestAccNetAppAccountEncryption_updateKey
--- PASS: TestAccNetAppAccountEncryption_updateKey (495.71s)
=== CONT  TestAccNetAppAccount_updateManagedIdentity
--- PASS: TestAccNetAppAccount_updateManagedIdentity (211.12s)
=== CONT  TestAccNetAppAccountEncryption_cmkUserAssigned
=== CONT  TestAccNetAppAccount_userAssignedManagedIdentity
--- PASS: TestAccNetAppAccountEncryption_cmkUserAssigned (379.35s)
--- PASS: TestAccNetAppAccount_userAssignedManagedIdentity (150.57s)
=== CONT  TestAccNetAppAccountEncryptionDataSource_basic
--- PASS: TestAccNetAppAccountEncryptionDataSource_basic (372.43s)
=== CONT  TestAccDataSourceNetAppAccount_systemAssignedManagedIdentity
--- PASS: TestAccDataSourceNetAppAccount_systemAssignedManagedIdentity (118.11s)
=== CONT  TestAccDataSourceNetAppPool_basic
=== CONT  TestAccNetAppBackupVault_basic
--- PASS: TestAccDataSourceNetAppPool_basic (222.25s)
--- PASS: TestAccNetAppBackupVault_basic (218.38s)
FAIL
FAIL    github.com/hashicorp/terraform-provider-azurerm/internal/services/netapp        69333.648s
FAIL
make: *** [GNUmakefile:144: acctests] Error 1

Rerun of the failed ones (the persistent ones are an issue with my sub)

pmarques@CPC-pmarq-JEYHU [ ~/go/src/github.com/hashicorp/terraform-provider-azurerm ]$ make acctests SERVICE='netapp' TESTARGS=' -parallel 1 -run="TestAccNetAppVolume_(nfsv3FromSnapshot|shortTermClone|createFromSnapshotInAnotherPool|crossZoneRegionReplication|crossRegionReplication)" -count=1' TESTTIMEOUT='1200m'
TF_ACC=1 go test -v ./internal/services/netapp -parallel 1 -run="TestAccNetAppVolume_(nfsv3FromSnapshot|shortTermClone|createFromSnapshotInAnotherPool|crossZoneRegionReplication|crossRegionReplication)" -count=1 -timeout 1200m -ldflags="-X=github.com/hashicorp/terraform-provider-azurerm/version.ProviderVersion=acc"
go: downloading go1.26.6 (linux/amd64)
=== RUN   TestAccNetAppVolume_createFromSnapshotInAnotherPool
=== PAUSE TestAccNetAppVolume_createFromSnapshotInAnotherPool
=== RUN   TestAccNetAppVolume_shortTermClone
=== PAUSE TestAccNetAppVolume_shortTermClone
=== RUN   TestAccNetAppVolume_crossRegionReplication
=== PAUSE TestAccNetAppVolume_crossRegionReplication
=== RUN   TestAccNetAppVolume_crossZoneRegionReplication
=== PAUSE TestAccNetAppVolume_crossZoneRegionReplication
=== RUN   TestAccNetAppVolume_nfsv3FromSnapshot
=== PAUSE TestAccNetAppVolume_nfsv3FromSnapshot
=== CONT  TestAccNetAppVolume_createFromSnapshotInAnotherPool
--- PASS: TestAccNetAppVolume_createFromSnapshotInAnotherPool (1048.90s)
=== CONT  TestAccNetAppVolume_crossZoneRegionReplication
    testcase.go:363: Step 1/2 error: Error running apply: exit status 1

        Error: creating Volume (Subscription: "66bc9830-19b6-4987-94d2-0e487be7aa47"
        Resource Group Name: "acctestRG-netapp-260827190734835735"
        Net App Account Name: "acctest-NetAppAccount-secondary-260827190734835735"
        Capacity Pool Name: "acctest-NetAppPool-secondary-260827190734835735"
        Volume Name: "acctest-NetAppVolume-cross-region-260827190734835735"): polling after CreateOrUpdate: polling failed: the Azure API returned the following error:

        Status: "Failed"
        Code: "Conflict"
        Message: "Unable to create volume 'acctest-NetAppVolume-cross-region-260827190734835735'. Another volume creation is in progress. Please try again in a few minutes."
        Activity Id: ""

        ---

        API Response:

        ----[start]----
        {"id":"/subscriptions/66bc9830-19b6-4987-94d2-0e487be7aa47/providers/Microsoft.NetApp/locations/eastus2/operationResults/a36fbb0a-bd41-4527-8316-6b1d8cfc0195","name":"a36fbb0a-bd41-4527-8316-6b1d8cfc0195","status":"Failed","startTime":"2026-08-27T19:42:03.3787578Z","endTime":"2026-08-27T19:54:02.4337284Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/66bc9830-19b6-4987-94d2-0e487be7aa47/resourceGroups/acctestRG-netapp-260827190734835735/providers/Microsoft.NetApp/netAppAccounts/acctest-NetAppAccount-secondary-260827190734835735/capacityPools/acctest-NetAppPool-secondary-260827190734835735/volumes/acctest-NetAppVolume-cross-region-260827190734835735","action":"CREATE"},"error":{"code":"Conflict","message":"Unable to create volume 'acctest-NetAppVolume-cross-region-260827190734835735'. Another volume creation is in progress. Please try again in a few minutes.","details":[{"code":"FileSystemAllocationFailed","message":"Unable to create volume 'acctest-NetAppVolume-cross-region-260827190734835735'. Another volume creation is in progress. Please try again in a few minutes."}]}}
        -----[end]-----


          with azurerm_netapp_volume.test_cross_region,
          on terraform_plugin_test.tf line 286, in resource "azurerm_netapp_volume" "test_cross_region":
         286: resource "azurerm_netapp_volume" "test_cross_region" {

    panic.go:694: Error running post-test destroy, there may be dangling resources: exit status 1

        Error: deleting Capacity Pool (Subscription: "66bc9830-19b6-4987-94d2-0e487be7aa47"
        Resource Group Name: "acctestRG-netapp-260827190734835735"
        Net App Account Name: "acctest-NetAppAccount-secondary-260827190734835735"
        Capacity Pool Name: "acctest-NetAppPool-secondary-260827190734835735"): polling after PoolsDelete: context deadline exceeded

--- FAIL: TestAccNetAppVolume_crossZoneRegionReplication (3549.87s)
=== CONT  TestAccNetAppVolume_nfsv3FromSnapshot
--- PASS: TestAccNetAppVolume_nfsv3FromSnapshot (1034.00s)
=== CONT  TestAccNetAppVolume_crossRegionReplication
    testcase.go:363: Step 1/2 error: Error running apply: exit status 1

        Error: creating Volume (Subscription: "66bc9830-19b6-4987-94d2-0e487be7aa47"
        Resource Group Name: "acctestRG-netapp-260827190734838226"
        Net App Account Name: "acctest-NetAppAccount-secondary-260827190734838226"
        Capacity Pool Name: "acctest-NetAppPool-secondary-260827190734838226"
        Volume Name: "acctest-NetAppVolume-secondary-260827190734838226"): polling after CreateOrUpdate: polling failed: the Azure API returned the following error:

        Status: "Failed"
        Code: "Conflict"
        Message: "Unable to create volume 'acctest-NetAppVolume-secondary-260827190734838226'. Another volume creation is in progress. Please try again in a few minutes."
        Activity Id: ""

        ---

        API Response:

        ----[start]----
        {"id":"/subscriptions/66bc9830-19b6-4987-94d2-0e487be7aa47/providers/Microsoft.NetApp/locations/eastus2/operationResults/199fee43-90d6-4213-943b-e85195605c26","name":"199fee43-90d6-4213-943b-e85195605c26","status":"Failed","startTime":"2026-08-27T20:50:14.9478976Z","endTime":"2026-08-27T21:02:30.2968487Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/66bc9830-19b6-4987-94d2-0e487be7aa47/resourceGroups/acctestRG-netapp-260827190734838226/providers/Microsoft.NetApp/netAppAccounts/acctest-NetAppAccount-secondary-260827190734838226/capacityPools/acctest-NetAppPool-secondary-260827190734838226/volumes/acctest-NetAppVolume-secondary-260827190734838226","action":"CREATE"},"error":{"code":"Conflict","message":"Unable to create volume 'acctest-NetAppVolume-secondary-260827190734838226'. Another volume creation is in progress. Please try again in a few minutes.","details":[{"code":"FileSystemAllocationFailed","message":"Unable to create volume 'acctest-NetAppVolume-secondary-260827190734838226'. Another volume creation is in progress. Please try again in a few minutes."}]}}
        -----[end]-----


          with azurerm_netapp_volume.test_secondary,
          on terraform_plugin_test.tf line 206, in resource "azurerm_netapp_volume" "test_secondary":
         206: resource "azurerm_netapp_volume" "test_secondary" {

    panic.go:694: Error running post-test destroy, there may be dangling resources: exit status 1

        Error: deleting Capacity Pool (Subscription: "66bc9830-19b6-4987-94d2-0e487be7aa47"
        Resource Group Name: "acctestRG-netapp-260827190734838226"
        Net App Account Name: "acctest-NetAppAccount-secondary-260827190734838226"
        Capacity Pool Name: "acctest-NetAppPool-secondary-260827190734838226"): polling after PoolsDelete: context deadline exceeded

--- FAIL: TestAccNetAppVolume_crossRegionReplication (3071.52s)
=== CONT  TestAccNetAppVolume_shortTermClone
--- PASS: TestAccNetAppVolume_shortTermClone (1046.96s)
FAIL
FAIL    github.com/hashicorp/terraform-provider-azurerm/internal/services/netapp        9751.328s
FAIL
make: *** [GNUmakefile:144: acctests] Error 1

@hc-github-team-tf-azure

Copy link
Copy Markdown
Collaborator

@paulomarquesc - One or more tests failed in this PR. Please review the failures.

Build: 732732
PR: #33215

Total: 116
Passed: 89
Failed: 27
Test Duration: 7h 50m 13s

Test Details
Status Test Name Duration %❌ First Last
✅ PASS TestAccDataSourceNetAppAccount_basic 86.392s 2% 174d 51d
✅ PASS TestAccDataSourceNetAppAccount_systemAssignedManagedIdentity 96.585s 2% 174d 51d
✅ PASS TestAccNetAppAccountEncryption_cmkSystemAssigned 292.407s 4% 174d 22d
✅ PASS TestAccNetAppAccountEncryption_cmkUserAssigned 294.368s 2% 213d 51d
✅ PASS TestAccNetAppAccountEncryptionDataSource_basic 337.295s 2% 174d 51d
✅ PASS TestAccNetAppAccount_systemAssignedManagedIdentity 98.278s 2% 174d 51d
✅ PASS TestAccNetAppAccount_userAssignedManagedIdentity 131.451s 2% 213d 51d
✅ PASS TestAccNetAppAccountEncryption_updateKey 344.915s 2% 174d 51d
✅ PASS TestAccNetAppAccount_updateManagedIdentity 172.088s 2% 213d 51d
✅ PASS TestAccNetAppBackupPolicyDataSource_basic 132.413s 2% 174d 51d
✅ PASS TestAccNetAppBackupPolicy_basic 139.92s 2% 174d 51d
✅ PASS TestAccNetAppBackupPolicy_complete 138.833s 2% 174d 51d
✅ PASS TestAccNetAppAccount_sequential 549.267s 0% N/A N/A
✅ PASS TestAccNetAppBackupVaultDataSource_basic 148.62s 2% 174d 51d
✅ PASS TestAccNetAppBackupPolicy_update 183.985s 2% 174d 51d
✅ PASS TestAccNetAppBackupVault_basic 163.904s 2% 174d 51d
✅ PASS TestAccNetAppBackupVault_update 204.77s 0% 174d 118d
✅ PASS TestAccDataSourceNetAppPool_basic 164.018s 2% 174d 51d
✅ PASS TestAccNetAppPool_basic 179.275s 2% 174d 51d
✅ PASS TestAccNetAppPool_requiresImport 172.363s 2% 174d 51d
✅ PASS TestAccNetAppPool_complete 172.052s 2% 174d 51d
✅ PASS TestAccNetAppPool_doubleEncryption 174.764s 2% 174d 51d
✅ PASS TestAccNetAppPool_update 255.196s 2% 174d 51d
✅ PASS TestAccNetAppPool_flexibleServiceLevel 179.39s 2% 174d 51d
✅ PASS TestAccNetAppPool_coolAccess 212.164s 2% 174d 51d
✅ PASS TestAccNetAppPool_flexibleServiceLevelUpdate 216.12s 2% 174d 51d
✅ PASS TestAccDataSourceNetAppSnapshotPolicy_basic 208.973s 2% 174d 51d
✅ PASS TestAccNetAppSnapshotPolicy_basic 212.973s 2% 174d 51d
✅ PASS TestAccNetAppSnapshotPolicy_hourlySchedule 211.245s 0% 174d 174d
✅ PASS TestAccNetAppSnapshotPolicy_dailySchedule 215.471s 2% 174d 51d
✅ PASS TestAccNetAppSnapshotPolicy_weeklySchedule 217.012s 2% 174d 51d
✅ PASS TestAccNetAppSnapshotPolicy_monthlySchedule 212.634s 2% 174d 51d
✅ PASS TestAccNetAppSnapshotPolicy_requiresImport 211.525s 2% 174d 51d
✅ PASS TestAccNetAppSnapshotPolicy_updateSnapshotPolicy 261.087s 2% 174d 51d
✅ PASS TestAccNetAppSnapshotPolicy_complete 216.623s 2% 174d 51d
✅ PASS TestAccDataSourceNetAppSnapshot_basic 720.598s 41% 211d 0d
✅ PASS TestAccNetAppVolumeBucket_list 631.683s 32% 59d 16d
✅ PASS TestAccNetAppSnapshot_requiresImport 856.461s 39% 195d 13d
✅ PASS TestAccDataSourceNetAppVolumeBucket_basic 797.151s 16% 59d 13d
✅ PASS TestAccNetAppVolumeBucket_update 832.992s 32% 57d 8d
❌ FAIL TestAccNetAppSnapshot_basic 2582.662s 34% 211d 13d
✅ PASS TestAccDataSourceNetAppVolumeBucketWithServer_basic 660.204s 40% 59d 8d
❌ FAIL TestAccNetAppSnapshot_complete 3198.875s 48% 213d 0d
✅ PASS TestAccNetAppVolumeBucketWithServer_complete 665.371s 32% 62d 0d
❌ FAIL TestAccNetAppVolumeBucket_basic 3185.542s 40% 62d 16d
✅ PASS TestAccNetAppVolumeBucketWithServer_update 719.44s 32% 55d 6d
❌ FAIL TestAccNetAppVolumeBucket_complete 3896.104s 28% 51d 6d
✅ PASS TestAccDataSourceNetAppVolume_basic 656.396s 2% 174d 51d
❌ FAIL TestAccNetAppVolumeBucket_requiresImport 3647.754s 32% 51d 10d
❌ FAIL TestAccDataSourceNetAppVolume_breakthroughMode 159.437s N/A N/A N/A
❌ FAIL TestAccNetAppVolumeBucketWithServer_basic 2969.072s 32% 57d 0d
✅ PASS TestAccDataSourceNetAppVolume_advancedRansomwareProtection 828.274s 2% 51d 51d
❌ FAIL TestAccNetAppVolumeGroupOracleDataSource_basic 204.727s 32% 213d 6d
✅ PASS TestAccDataSourceNetAppVolume_backupPolicy 1164.989s 12% 174d 41d
❌ FAIL TestAccNetAppVolumeGroupOracle_basicProximityPlacementGroup 242.435s 77% 213d 6d
❌ FAIL TestAccNetAppVolumeGroupOracle_snapshotPolicy 251.066s 42% 213d 6d
❌ FAIL TestAccNetAppVolumeBucketWithServer_withKeyVault 2874.434s 29% 51d 6d
❌ FAIL TestAccNetAppVolumeGroupOracle_snapshotPolicyUpdate 245.301s 27% 213d 6d
✅ PASS TestAccNetAppVolumeGroupOracle_basicAvailabilityZone 1047.327s 32% 213d 6d
❌ FAIL TestAccNetAppVolumeBucketWithServer_requiresImport 2948.075s 40% 62d 8d
✅ PASS TestAccNetAppVolumeGroupOracle_nfsv3 1192.647s 22% 213d 6d
✅ PASS TestAccNetAppVolumeGroupOracle_volumeUpdates 996.882s 30% 213d 13d
❌ FAIL TestAccNetAppVolumeGroupOracle_crossZoneReplicationAZ 255.069s 37% 213d 15d
✅ PASS TestAccNetAppVolumeGroupOracle_protocolConversion 1537.606s 70% 213d 22d
❌ FAIL TestAccNetAppVolumeGroupOracle_crossRegionReplication 1053.691s 75% 213d 10d
✅ PASS TestAccNetAppVolumeGroupSAPHana_basicAvailabilityZone 796.223s 42% 204d 10d
✅ PASS TestAccNetAppVolumeGroupOracle_volCustomerManagedKeyEncryption 2176.806s 27% 213d 13d
✅ PASS TestAccNetAppVolumeGroupSAPHanaDataSource_basic 1502.844s 77% 213d 6d
✅ PASS TestAccNetAppVolumeGroupSAPHana_basic 1162.578s 65% 213d 6d
❌ FAIL TestAccNetAppVolumeGroupSAPHana_volCustomerManagedKeyEncryption 362.006s 40% 205d 6d
❌ FAIL TestAccNetAppVolumeGroupSAPHana_backupVolumeSpecsNfsv3 274.067s 67% 213d 6d
❌ FAIL TestAccNetAppVolumeGroupSAPHana_snapshotPolicy 282.761s 27% 213d 10d
❌ FAIL TestAccNetAppVolumeGroupSAPHana_volumeUpdates 239.86s 70% 213d 6d
❌ FAIL TestAccNetAppVolumeGroupSAPHana_protocolConversion 227.473s 80% 213d 8d
❌ FAIL TestAccNetAppVolumeGroupSAPHana_crossRegionReplication 272.556s 100% 213d 6d
✅ PASS TestAccNetAppVolumeGroupOracle_crossRegionReplicationAZ 2412.523s 67% 213d 13d
✅ PASS TestAccNetAppVolumeQuotaRuleDataSource_basic 1496.058s 32% 205d 8d
✅ PASS TestAccNetAppVolumeGroupSAPHana_snapshotPolicyUpdate 2116.923s 27% 213d 36d
✅ PASS TestAccNetAppVolumeGroupSAPHana_crossRegionReplicationAZ 2583.763s 67% 205d 8d
✅ PASS TestAccNetAppVolumeQuotaRule_defaultGroupQuotaType 752.605s 37% 209d 10d
✅ PASS TestAccNetAppVolumeGroupSAPHana_crossZoneReplicationAZ 2676.409s 37% 205d 6d
❌ FAIL TestAccNetAppVolumeQuotaRule_individualGroupQuotaType 2586.863s 40% 209d 6d
✅ PASS TestAccNetAppVolume_basic 1165.479s 2% 174d 51d
✅ PASS TestAccNetAppVolume_backupPolicy 1486.391s 20% 174d 20d
❌ FAIL TestAccNetAppVolumeQuotaRule_individualUserQuotaType 2597.114s 35% 213d 6d
✅ PASS TestAccNetAppVolume_backupPolicyUpdate 2248.85s 17% 174d 38d
❌ FAIL TestAccNetAppVolumeQuotaRule_defaultUserQuotaType 2586.523s 40% 213d 13d
✅ PASS TestAccNetAppVolume_availabilityZone 1776.956s 2% 174d 51d
✅ PASS TestAccNetAppVolume_nfsv41 1693.183s 2% 174d 51d
✅ PASS TestAccNetAppVolume_standardNetworkFeature 1989.099s 2% 174d 51d
✅ PASS TestAccNetAppVolume_snapshotPolicy 1613.502s 2% 174d 51d
✅ PASS TestAccNetAppVolume_snapshotPolicyUpdate 1303.377s 2% 174d 51d
✅ PASS TestAccNetAppVolume_createFromSnapshotInAnotherPool 2321.728s 60% 174d 6d
✅ PASS TestAccNetAppVolume_shortTermClone 2144.582s 60% 174d 6d
✅ PASS TestAccNetAppVolume_crossRegionReplication 2722.83s 2% 205d 51d
✅ PASS TestAccNetAppVolume_nfsv3SnapshotDirectoryVisibleFalse 1986.75s 2% 174d 51d
✅ PASS TestAccNetAppVolume_nfsv3SnapshotDirectoryVisibleTrue 980.979s 2% 190d 51d
✅ PASS TestAccNetAppVolume_nfsv3FromSnapshot 2639.816s 65% 183d 6d
❌ FAIL TestAccNetAppVolume_largeVolume 79.768s 100% 213d 6d
❌ FAIL TestAccNetAppVolume_breakthroughMode 153.202s N/A N/A N/A
❌ FAIL TestAccNetAppVolume_breakthroughModeUpdateSize 149.349s N/A N/A N/A
✅ PASS TestAccNetAppVolume_breakthroughModeRequiresLargeVolume 6.003s N/A N/A N/A
✅ PASS TestAccNetAppVolume_breakthroughModeConflictsWithCoolAccess 6.044s N/A N/A N/A
✅ PASS TestAccNetAppVolume_breakthroughModeBelowMinimumSize 5.949s N/A N/A N/A
✅ PASS TestAccNetAppVolume_requiresImport 1601.595s 2% 174d 51d
✅ PASS TestAccNetAppVolume_crossZoneReplication 4378.464s 2% 211d 51d
✅ PASS TestAccNetAppVolume_complete 2290.169s 2% 174d 51d
✅ PASS TestAccNetAppVolume_update 2224.348s 2% 174d 51d
✅ PASS TestAccNetAppVolume_volEncryptionCmkUserAssigned 1222.013s 47% 213d 8d
✅ PASS TestAccNetAppVolume_updateExportPolicyRule 1982.295s 2% 174d 51d
✅ PASS TestAccNetAppVolume_crossZoneRegionReplication 5739.657s 2% 209d 51d
✅ PASS TestAccNetAppVolume_volEncryptionCmkSystemAssigned 2685.014s 45% 213d 10d
✅ PASS TestAccNetAppVolume_serviceLevelUpdate 2637.034s 2% 174d 51d
✅ PASS TestAccNetAppVolume_coolAccess 2458.1s 2% 174d 51d
✅ PASS TestAccNetAppVolume_protocolConversion 2361.221s 47% 213d 51d
✅ PASS TestAccNetAppVolume_advancedRansomwareProtection 2332.684s 5% 51d 20d

@hc-github-team-tf-azure hc-github-team-tf-azure added the teamcity-failed Failures in teamcity tests, requires explanation or fixing label Aug 28, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants