Skip to content

Commit

Permalink
Fix #2901
Browse files Browse the repository at this point in the history
  • Loading branch information
sparkprime committed Aug 19, 2015
1 parent b2731e2 commit aa45266
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ func buildDisks(d *schema.ResourceData, meta interface{}) ([]*compute.AttachedDi
disk.InitializeParams.DiskName = v.(string)
}
if v, ok := d.GetOk(prefix + ".disk_size_gb"); ok {
disk.InitializeParams.DiskSizeGb = v.(int64)
disk.InitializeParams.DiskSizeGb = int64(v.(int))
}
disk.InitializeParams.DiskType = "pd-standard"
if v, ok := d.GetOk(prefix + ".disk_type"); ok {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ resource "google_compute_instance_template" "foobar" {
disk {
source_image = "debian-7-wheezy-v20140814"
auto_delete = true
disk_size_gb = 100
boot = true
}
Expand Down

0 comments on commit aa45266

Please sign in to comment.