We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add the ability to enable ABE on the share resource
netapp-ontap_protocols_cifs_share_resource
resource "netapp-ontap_protocols_cifs_share_resource" "share" { count = var.nas_type == "smb" ? 1 : 0 cx_profile_name = var.storage_tier name = var.smb_hidden == true ? "${var.share_name}$" : var.share_name path = netapp-ontap_storage_volume_resource.volume.nas.junction_path svm_name = local.svm_name encryption = var.smb_encryption access_based_enumeration = true acls = [{ "permission": "full_control", "type": "windows", "user_or_group": "user@domain" }, { "permission": "change", "type": "windows", "user_or_group": "group@domain" }, { "permission": "full_control", "type": "windows", "user_or_group": "Everyone" }] }
No response
None
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Add the ability to enable ABE on the share resource
Affected Resource(s) and/or Data Source(s)
netapp-ontap_protocols_cifs_share_resource
Potential Terraform Configuration
References
No response
Would you like to implement a fix?
None
The text was updated successfully, but these errors were encountered: