You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem also exist when terraform check existing volumes created using previous version of provider, and trying to remove and add exactly the same block of "export_policy" as below.
netapp-gcp provider version = "23.12.0"
terraform version = v1.7.5 ( linux_amd64 )
This particular version of provider (23.12.0) does have a problem to create or update NFSv4 volume:
name = "my-cvs-vol-nfs" region = var.region protocol_types = ["NFSv4"] network = data.google_compute_network.my_vpc.name volume_path = "my-cvs-vol-nfs" size = 100 service_level = "extreme" storage_class = "hardware" export_policy { rule { allowed_clients = "10.0.1.0/24" access = "ReadWrite" nfsv3 { checked = false } nfsv4 { checked = true } } } }
It results in error
Problem also exist when terraform check existing volumes created using previous version of provider, and trying to remove and add exactly the same block of "export_policy" as below.
In this case terraform also fail with the same code as above.
Described problem exist only in 23.12.0 version of this provider. Version 23.4.0 seems to be completely fine.
The text was updated successfully, but these errors were encountered: