0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-07-01 11:02:59 +00:00

Fix JSON unmarshal error when deploying LCX container

This closes #15
This commit is contained in:
Pavel Boldyrev 2021-09-09 14:29:56 -04:00
parent 268f9dd615
commit 81355e0e9e
No known key found for this signature in database
GPG Key ID: 9A3B05A2B8921AD9

View File

@ -200,7 +200,7 @@ type VirtualEnvironmentContainerGetStatusResponseData struct {
SwapAllocation *int `json:"maxswap,omitempty"`
Tags *string `json:"tags,omitempty"`
Uptime *int `json:"uptime,omitempty"`
VMID string `json:"vmid,omitempty"`
VMID *int `json:"vmid,omitempty"`
}
// VirtualEnvironmentContainerRebootRequestBody contains the body for a container reboot request.