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
cx_profile_name = "cluster1"
name = "svm_third"
svm_name = "svm_third"
ad_domain ={
fqdn = "kdf.com"
user = "John"
password = "****"
organizational_unit = "*****" # Distinguished Name of the OU
}
}
This works, but when I try to add this part in the resource:
Run the resource:
resource "netapp-ontap_protocols_cifs_service_resource" "cifs_service" {
cx_profile_name = "cluster1"
name = "svm_third"
svm_name = "svm_third"
ad_domain ={
fqdn = "kdf.com"
user = "John"
password = "****"
organizational_unit = "*****" # Distinguished Name of the OU
}
}
Then run:
resource "netapp-ontap_protocols_cifs_service_resource" "cifs_service" {
cx_profile_name = "cluster1"
name = "svm_third"
svm_name = "svm_third"
ad_domain ={
fqdn = "kdf.com"
user = "John"
password = "****"
organizational_unit = "*****" # Distinguished Name of the OU
}
security = {
advertised_kdc_encryptions = ["aes-256","aes-128"]
}
}
The text was updated successfully, but these errors were encountered:
Terraform Core Version
1.6.3
ONTAP Provider Version
9.14
Affected Resource(s)
I am trying to apply this configuration in ontap via terraform:
resource "netapp-ontap_protocols_cifs_service_resource" "cifs_service" {
cx_profile_name = "cluster1"
name = "svm_third"
svm_name = "svm_third"
ad_domain ={
fqdn = "kdf.com"
user = "John"
password = "****"
organizational_unit = "*****" # Distinguished Name of the OU
}
}
This works, but when I try to add this part in the resource:
security = {
advertised_kdc_encryptions = ["aes-256","aes-128"]
}
I get the following error message:
Expected Behavior
I should be able to modify the advertised_kdc_encryptions.
Actual Behavior
Relevant Error/Panic Output Snippet
No response
Terraform Configuration Files
`terraform {
required_providers {
}
}
provider "netapp-ontap" {
connection_profiles = [
{
id = "cluster1"
name = "cluster1"
hostname = ""
username = ""
password = ""
https = true
insecure = true
validate_certs = false
ca_certs = []
}
]
}`
Steps to Reproduce
Run the resource:
resource "netapp-ontap_protocols_cifs_service_resource" "cifs_service" {
cx_profile_name = "cluster1"
name = "svm_third"
svm_name = "svm_third"
ad_domain ={
fqdn = "kdf.com"
user = "John"
password = "****"
organizational_unit = "*****" # Distinguished Name of the OU
}
}
Then run:
resource "netapp-ontap_protocols_cifs_service_resource" "cifs_service" {
cx_profile_name = "cluster1"
name = "svm_third"
svm_name = "svm_third"
ad_domain ={
fqdn = "kdf.com"
user = "John"
password = "****"
organizational_unit = "*****" # Distinguished Name of the OU
}
security = {
advertised_kdc_encryptions = ["aes-256","aes-128"]
}
}
The text was updated successfully, but these errors were encountered: