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
Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request.
Please do not leave +1 or me too comments, they generate extra noise for issue followers and do not help prioritize the request.
If you are interested in working on this issue or have submitted a pull request, please leave a comment.
If an issue is assigned to a user, that user is claiming responsibility for the issue.
Customers working with a Google Technical Account Manager or Customer Engineer can ask them to reach out internally to expedite investigation and resolution of this issue.
Terraform - Google should pass the given configuration to the google cloud APIs. Below is the expected where we can see the shieldedInstanceConfig value is being passed.
Even if the attributes enable_secure_boot, enable_integrity_monitoring and enable_vtpm were set to false, after creating the google_dataproc_cluster they were set with true value in the tfstate file
Seems like setting value to false ignores the set value and due to type being bool in ShieldedInstanceConfig. Probably similar issue as this. However, in this case ShieldedInstanceConfig is from Dataproc APIs.
Community Note
Terraform Version & Provider Version(s)
Terraform ~>v1.2
on
Affected Resource(s)
google_dataproc_*
Terraform Configuration
Debug Output
No response
Expected Behavior
Terraform - Google should pass the given configuration to the google cloud APIs. Below is the expected where we can see the
shieldedInstanceConfig
value is being passed.Actual Behavior
shieldedInstanceConfig
object is being passed as empty when we try to passfalse
values. Same works fine when we settrue
.Note: We have tried without
shielded_instance_config
(default to false), still dataproc cluster VMs are being created with secure boot enabled.Steps to reproduce
terraform init
terraform apply
b/379163160
The text was updated successfully, but these errors were encountered: