Merge pull request #93 from claudusd/full_clone

Add choice between full or partial clone
This commit is contained in:
Grant Gongaware 2019-10-01 10:20:22 -07:00 committed by GitHub
commit 48d6718ef8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,6 +71,12 @@ func resourceVmQemu() *schema.Resource {
Optional: true,
ForceNew: true,
},
"full_clone": {
Type: schema.TypeBool,
Optional: true,
ForceNew: true,
Default: true,
},
"qemu_os": {
Type: schema.TypeString,
Optional: true,
@ -478,6 +484,12 @@ func resourceVmQemuCreate(d *schema.ResourceData, meta interface{}) error {
// check if ISO or clone
if d.Get("clone").(string) != "" {
fullClone := 1
if !d.Get("full_clone").(bool) {
fullClone = 0
}
config.FullClone = &fullClone
sourceVmr, err := client.GetVmRefByName(d.Get("clone").(string))
if err != nil {
pmParallelEnd(pconf)