diff --git a/pkg/models/instances.go b/pkg/models/instances.go index 9833a86..16d706c 100644 --- a/pkg/models/instances.go +++ b/pkg/models/instances.go @@ -585,9 +585,10 @@ type GetInstanceContainer struct { ContainerType NameModel `json:"containerType" tf:"container_type,sub"` Server GetInstanceContainersServer `json:"server" tf:"server,sub"` Hostname string `json:"hostname" tf:"hostname"` - MaxStorage int64 `json:"maxStorage" tf:"max_storage"` - MaxMemory int64 `json:"maxMemory" tf:"max_memory"` - MaxCores int `json:"maxCores" tf:"max_cores"` + // int64 not there in terraform schema type + // MaxStorage int64 `json:"maxStorage" tf:"max_storage"` + // MaxMemory int64 `json:"maxMemory" tf:"max_memory"` + MaxCores int `json:"maxCores" tf:"max_cores"` } type GetInstanceContainersServer struct {