-
Notifications
You must be signed in to change notification settings - Fork 233
New issue
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
Default is ignored in properties with a DiffSuppressFunc #70
Comments
Kind of confusing but I believe this is working as intended as shown here: hashicorp/terraform@fa9758e Well, working as "intended" may not be working as designed... so this may still be a bug. @catsby @stack72: what do you think here? Should diff suppression be ignored when the default value is used? |
This is still happening in terraform 0.11.10 Terraform itself handles this well, i.e. when a provider defines a resource which has an attribute However, the terraform provider acceptance test framework doesn't behave the same way: the default value for the attribute is ignored and the default value for the type is returned instead. It would be great to get this fixed as it makes testing providers quite difficult in some cases. |
Just wanted to add that, if my understanding of the work-around is correct, it will only work with types such as TypeString or TypeInt, i.e. types that can have at least 3 values: one for the type's default, one for an arbitrary attribute default that helps determine whether or not the user has specified a value for the attribute, and one for the actual value of the attribute as specified by the user. It then means that the work-around does not actually work for attributes of type TypeBool. |
Hi folks 👋 A lot has changed with Terraform CLI and terraform-plugin-sdk between when this issue was raised and now. For example, there have been significant updates to the difference handling logic and the acceptance testing framework now uses real Terraform CLI commands and artifacts rather than re-implementing or emulating some of the previous Terraform core logic internally. State value checking should be wholly representative of an actual If you are still running into problems in this area with recent versions of Terraform CLI and the SDK, my suggestion would be to open a new issue so we can take a fresh look. Thanks so much. |
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. |
Terraform Version
Terraform v0.7.7
Affected Resource(s)
Any resource with a property that has both a Default value and a DiffSuppressFunc
Example code
https://github.com/softlayer/terraform-provider-softlayer/blob/aa6f146/softlayer/resource_softlayer_virtual_guest.go#L197-L209
Description
If you have a property that has both a Default value and a DiffSuppressFunc, Terraform does not seem to use the Default value when generating the ResourceData for a new resource (no existing state yet).
Workaround: https://github.com/softlayer/terraform-provider-softlayer/blob/aa6f146/softlayer/resource_softlayer_virtual_guest.go#L310-L316
Expected Behavior
For Terraform to use the Default value for optional properties when there is no existing resource state yet.
The text was updated successfully, but these errors were encountered: