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 the modular-magician user, it is either in the process of being autogenerated, or is planned to be autogenerated soon. If an issue is assigned to a user, that user is claiming responsibility for the issue. If an issue is assigned to hashibot, a community member has claimed the issue already.
Terraform Version
Terraform v0.12.16
provider.google v3.4.0
Affected Resource(s)
google_compute_instance_template
Terraform Configuration Files
resource"google_compute_instance_from_template""tpl" {
name="instance-from-template"zone="us-central1-a"source_instance_template=google_compute_instance_template.default.self_link
}
resource"google_compute_instance_template""default" {
name="test-template"machine_type="n1-standard-1"disk {
source=google_compute_region_disk.regiondisk.self_linkauto_delete=falseboot=false
}
// Create a new boot disk from an imagedisk {
source_image="debian-cloud/debian-9"auto_delete=trueboot=true
}
network_interface {
network="default"
}
}
data"google_compute_image""my_image" {
family="debian-9"project="debian-cloud"
}
resource"google_compute_region_disk""regiondisk" {
name="existing-disk"snapshot=google_compute_snapshot.snapdisk.self_linktype="pd-ssd"region="us-central1"physical_block_size_bytes=4096replica_zones=["us-central1-a", "us-central1-f"]
}
resource"google_compute_disk""disk" {
name="my-disk"image="debian-cloud/debian-9"size=50type="pd-ssd"zone="us-central1-a"
}
resource"google_compute_snapshot""snapdisk" {
name="my-snapshot"source_disk=google_compute_disk.disk.namezone="us-central1-a"
}
Debug Output
Panic Output
Expected Behavior
Resources are created without issues
Actual Behavior
Error: Error creating instance template: googleapi: Error 400: Invalid value for field 'resource.properties.disks[1].boot': 'true'. At most one persistent disk can be marked as a boot device., invalid
Steps to Reproduce
terraform apply
Important Factoids
In below post body, both disks' boot are set to true
This is a tricky one. The ordering of disks in the Terraform instance_template resource expects the boot disk to be the first specified disk. There is actually an API-level restriction that enforces this. We could potentially re-order the disks from the Terraform config to pass the boot disk first, and then re-order from the response to prevent diffs, but this is tricky.
I'll add an error for if a user attempts to specify a boot disk that is not the first disk in the instance template.
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 feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. If you feel I made an error 🤖 🙉 , please reach out to my human friends 👉 [email protected]. Thanks!
ghost
locked and limited conversation to collaborators
Mar 28, 2020
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Community Note
modular-magician
user, it is either in the process of being autogenerated, or is planned to be autogenerated soon. If an issue is assigned to a user, that user is claiming responsibility for the issue. If an issue is assigned tohashibot
, a community member has claimed the issue already.Terraform Version
Terraform v0.12.16
provider.google v3.4.0
Affected Resource(s)
google_compute_instance_template
Terraform Configuration Files
Debug Output
Panic Output
Expected Behavior
Resources are created without issues
Actual Behavior
Error: Error creating instance template: googleapi: Error 400: Invalid value for field 'resource.properties.disks[1].boot': 'true'. At most one persistent disk can be marked as a boot device., invalid
Steps to Reproduce
terraform apply
Important Factoids
In below post body, both disks' boot are set to
true
References
I
The text was updated successfully, but these errors were encountered: