From 7401524776d525432a5570067466b53cd69c5993 Mon Sep 17 00:00:00 2001 From: Suhas Bangalore Shekar Date: Mon, 20 Nov 2023 11:36:04 -0800 Subject: [PATCH] SVM Import feature --- internal/provider/svm_resource_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/provider/svm_resource_test.go b/internal/provider/svm_resource_test.go index 213c94f2..77e3cea9 100644 --- a/internal/provider/svm_resource_test.go +++ b/internal/provider/svm_resource_test.go @@ -68,9 +68,9 @@ func TestAccSvmResource(t *testing.T) { { ResourceName: "netapp-ontap_svm_resource.example", ImportState: true, - ImportStateId: fmt.Sprintf("%s,%s", "tfsvm4", "cluster4"), + ImportStateId: fmt.Sprintf("%s,%s", "ansibleSVM", "cluster4"), Check: resource.ComposeTestCheckFunc( - resource.TestCheckResourceAttr("netapp-ontap_svm_resource.example", "name", "tfsvm4"), + resource.TestCheckResourceAttr("netapp-ontap_svm_resource.example", "name", "ansibleSVM"), ), }, }, @@ -116,6 +116,6 @@ resource "netapp-ontap_svm_resource" "example" { name = "aggr3" }, ] - max_volumes = "200" + max_volumes = "unlimited" }`, host, admin, password, svm, comment, snapshotPolicy) }