@@ -23,8 +23,8 @@ Create/Modify/Delete a ONTAP user account
2323
2424## Supported Platforms
2525
26- * On-prem ONTAP system 9.6 or higher
27- * Amazon FSx for NetApp ONTAP
26+ - On-prem ONTAP system 9.6 or higher
27+ - Amazon FSx for NetApp ONTAP
2828
2929## Example Usage
3030
@@ -43,6 +43,7 @@ resource "netapp-ontap_security_account" "security_account" {
4343```
4444
4545<!-- schema generated by tfplugindocs -->
46+
4647## Schema
4748
4849### Required
@@ -96,17 +97,17 @@ Optional:
9697## Import
9798
9899This resource supports import, which allows you to import existing security account into the state of this resource.
99- Import require a unique ID composed of the security account name and connection profile, separated by a comma.
100+ Import require a unique ID composed of the security account name, SVM name, and connection profile, separated by a comma.
100101
101- id = ` name ` , ` cx_profile_name `
102+ id = ` name ` ,` svm ` , ` cx_profile_name `
102103
103104### Terraform Import
104105
105- For example
106+ For example
106107
107- ``` shell
108- terraform import netapp-ontap_security_account.act_import acc_user,cluster4
109- ```
108+ ``` shell
109+ terraform import netapp-ontap_security_account.act_import acc_user,acc_svm ,cluster4
110+ ```
110111
111112### Terraform Import Block
112113
@@ -117,7 +118,7 @@ First create the block
117118``` terraform
118119import {
119120 to = netapp-ontap_security_account.act_import
120- id = "acc_user,cluster4"
121+ id = "acc_user,acc_svm, cluster4"
121122}
122123```
123124
@@ -132,7 +133,7 @@ This will generate a file called generated.tf, which will contain the configurat
132133``` terraform
133134# __generated__ by Terraform
134135# Please review these resources and move them into your main configuration files.
135- # __generated__ by Terraform from "acc_user,cluster4"
136+ # __generated__ by Terraform from "acc_user,acc_svm, cluster4"
136137resource "netapp-ontap_security_account" "act_import" {
137138 cx_profile_name = "cluster4"
138139 name = "acc_user"
@@ -146,7 +147,7 @@ resource "netapp-ontap_security_account" "act_import" {
146147 comment = null
147148 locked = false
148149 owner = {
149- name = "abccluster-1 "
150+ name = "acc_svm "
150151 }
151152 password = null # sensitive
152153 role = {
0 commit comments