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:
Markus Liljedahl 2020-05-08 15:55:38 +02:00 committed by GitHub
parent b86efe7604
commit d807e81adb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ func (c *Config) Prepare(raws ...interface{}) ([]string, error) {
} }
if c.DiskSizeGb == 0 { if c.DiskSizeGb == 0 {
c.DiskSizeGb = 10 c.DiskSizeGb = 20
} }
if c.DiskType == "" { if c.DiskType == "" {