Fixed schema type and default value for agent field in resourceVmQemu

This commit is contained in:
Christopher Winkelmann 2019-05-17 01:56:17 +02:00
parent bd6051a7c5
commit fb33f8bc62

View File

@ -48,9 +48,9 @@ func resourceVmQemu() *schema.Resource {
Default: true,
},
"agent": {
Type: schema.TypeString,
Type: schema.TypeInt,
Optional: true,
Default: "1",
Default: 1,
},
"iso": {
Type: schema.TypeString,