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
The efficiency policy should be set to the string value of the effeciency.policy_name argument
Actual Behavior
The efficiency policy name was set to "-"
Relevant Error/Panic Output Snippet
When applying changes to netapp-ontap_storage_volume_resource.volume, provider "provider[\"registry.terraform.io/netapp/netapp-ontap\"]" produced an unexpected new
│ value: .efficiency.policy_name: was cty.StringVal("default"), but now cty.StringVal("-").
Terraform Core Version
1.9.3
ONTAP Provider Version
1.1.2
Affected Resource(s)
netapp-ontap_storage_volume_resource
Expected Behavior
The efficiency policy should be set to the string value of the effeciency.policy_name argument
Actual Behavior
The efficiency policy name was set to "-"
Relevant Error/Panic Output Snippet
Terraform Configuration Files
resource "netapp-ontap_storage_volume_resource" "volume" {
cx_profile_name = var.storage_tier
name = local.volume_name
comment = jsonencode({"shareName" = var.share_name, "customerNumber" = var.customer_number})
svm_name = local.svm
qos_policy_group = local.qos_policy
aggregates = [
{
name = local.aggregate
}
]
space_guarantee = "none"
snapshot_policy = var.snapshot_policy
space = {
size = var.volume_size
size_unit = "gb"
percent_snapshot_space = 5
logical_space = {
enforcement = true
reporting = true
}
}
nas = {
export_policy_name = var.export_policy_name
junction_path = "/${lower(var.share_name)}"
}
efficiency = {
policy_name = "default"
}
}
Steps to Reproduce
Creating a volume
Debug Output
No response
Panic Output
No response
Important Factoids
No response
References
No response
Would you like to implement a fix?
None
The text was updated successfully, but these errors were encountered: