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
Copy file name to clipboardExpand all lines: google/services/netapp/resource_netapp_active_directory.go
+35
Original file line number
Diff line number
Diff line change
@@ -95,6 +95,14 @@ A five-character random ID is generated automatically, for example, -6f9a, and a
95
95
Required: true,
96
96
Description: `Username for the Active Directory account with permissions to create the compute account within the specified organizational unit.`,
97
97
},
98
+
"administrators": {
99
+
Type: schema.TypeList,
100
+
Optional: true,
101
+
Description: `Domain user accounts to be added to the local Administrators group of the SMB service. Comma-separated list of domain users or groups. The Domain Admin group is automatically added when the service joins your domain as a hidden group.`,
102
+
Elem: &schema.Schema{
103
+
Type: schema.TypeString,
104
+
},
105
+
},
98
106
"aes_encryption": {
99
107
Type: schema.TypeBool,
100
108
Optional: true,
@@ -272,6 +280,12 @@ func resourceNetappactiveDirectoryCreate(d *schema.ResourceData, meta interface{
description = "ActiveDirectory is the public representation of the active directory config."
50
56
encrypt_dc_connections = false
51
57
kdc_hostname = "hostname"
@@ -119,6 +125,10 @@ The following arguments are supported:
119
125
(Optional)
120
126
Domain user/group accounts to be added to the Backup Operators group of the SMB service. The Backup Operators group allows members to backup and restore files regardless of whether they have read or write access to the files. Comma-separated list.
121
127
128
+
*`administrators` -
129
+
(Optional)
130
+
Domain user accounts to be added to the local Administrators group of the SMB service. Comma-separated list of domain users or groups. The Domain Admin group is automatically added when the service joins your domain as a hidden group.
131
+
122
132
*`security_operators` -
123
133
(Optional)
124
134
Domain accounts that require elevated privileges such as `SeSecurityPrivilege` to manage security logs. Comma-separated list.
0 commit comments