I have sensitive field in resource schema, if I do the terraform plan and apply to create the resource and after creating it if I again to the terraform apply without changing anything in the terraform script I am getting unwanted diff
so Is there any way to skip this unwanted diff?
I tried ignore_changes as well but my sensitive field is in set
Can somebody help
~ resource "avi_authprofile" "auth_profile" {
id = "https://100.65.10.112/api/authprofile/authprofile-10d9fa55-89bd-49a9-901f-de56b1f28d09"
name = "LDAP TEST"
# (3 unchanged attributes hidden)
- ldap {
# At least one attribute in this block is (or was) sensitive,
# so its contents will not be displayed.
}
+ ldap {
# At least one attribute in this block is (or was) sensitive,
# so its contents will not be displayed.
}
# (1 unchanged block hidden)
}
Thanks
Rohan