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
There was a typo in the aws_fsx_ontap_storage_virtual_machine resource. The documented field organizational_unit_distinguished_name was actually recognized as organizational_unit_distinguidshed_name
The typo has been corrected in tf version 3.70, however updating my IaC to use the new value (organizational_unit_distinguished_name) is forcing a replacement of my SVM. Leaving the value "as is" is resulting in a warning when pushing infrastructure.
Replacement is not ideal, as I have already made configuration changes on the SVM.
The expected behaviour should be that terraform recognizes that both values mean the same thing and that no changes are required.
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
There was a typo in the aws_fsx_ontap_storage_virtual_machine resource. The documented field
organizational_unit_distinguished_name
was actually recognized asorganizational_unit_distinguidshed_name
The typo has been corrected in tf version 3.70, however updating my IaC to use the new value (organizational_unit_distinguished_name) is forcing a replacement of my SVM. Leaving the value "as is" is resulting in a warning when pushing infrastructure.
Replacement is not ideal, as I have already made configuration changes on the SVM.
The expected behaviour should be that terraform recognizes that both values mean the same thing and that no changes are required.
See my example below:
~ self_managed_active_directory_configuration {
- organizational_unit_distinguidshed_name = "OU=MyOrgDetails" -> null # forces replacement
+ organizational_unit_distinguished_name = "OU=MyOrgDetails" # forces replacement
The text was updated successfully, but these errors were encountered: