Changed default disk size for when using googlecompute to match minimum disk sice to the google api. Closes https://github.com/hashicorp/packer/issues/9023 (#9071)
This commit is contained in:
parent
b86efe7604
commit
d807e81adb
|
@ -230,7 +230,7 @@ func (c *Config) Prepare(raws ...interface{}) ([]string, error) {
|
|||
}
|
||||
|
||||
if c.DiskSizeGb == 0 {
|
||||
c.DiskSizeGb = 10
|
||||
c.DiskSizeGb = 20
|
||||
}
|
||||
|
||||
if c.DiskType == "" {
|
||||
|
|
Loading…
Reference in New Issue