Skip to content

Commit

Permalink
comment int64 var
Browse files Browse the repository at this point in the history
  • Loading branch information
mahesh-hpe committed Nov 7, 2024
1 parent e2b9c3e commit aa53a0b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/HewlettPackard/hpegl-vmaas-terraform-resources
go 1.21

require (
github.com/HewlettPackard/hpegl-vmaas-cmp-go-sdk v0.1.15
github.com/HewlettPackard/hpegl-vmaas-cmp-go-sdk v0.1.16-0.20241107121404-76f500c3497a
github.com/golang/mock v1.6.0
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320
github.com/hashicorp/terraform-plugin-docs v0.9.0
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ dario.cat/mergo v1.0.0 h1:AGCNq9Evsj31mOgNPcLyXc+4PNABt905YmuqPYYpBWk=
dario.cat/mergo v1.0.0/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk=
github.com/HewlettPackard/hpegl-vmaas-cmp-go-sdk v0.1.15 h1:KLFsRCwjbfNXcWb9P6XKYhUZN9ILD0FjcY+ukRYHe1Y=
github.com/HewlettPackard/hpegl-vmaas-cmp-go-sdk v0.1.15/go.mod h1:tsKOAAbEQnpXAzqjcZUGzRiVp9QfRViKoTOdIltIMFI=
github.com/HewlettPackard/hpegl-vmaas-cmp-go-sdk v0.1.16-0.20241107121404-76f500c3497a h1:AnG8ewlUv+0FEDrTsr/IEgTnF8fKdWNLSFK4eujFIJ0=
github.com/HewlettPackard/hpegl-vmaas-cmp-go-sdk v0.1.16-0.20241107121404-76f500c3497a/go.mod h1:tsKOAAbEQnpXAzqjcZUGzRiVp9QfRViKoTOdIltIMFI=
github.com/Masterminds/goutils v1.1.0/go.mod h1:8cTjp+g8YejhMuvIA5y2vz3BpJxksy863GQaJW2MFNU=
github.com/Masterminds/goutils v1.1.1 h1:5nUrii3FMTL5diU80unEVvNevw1nH4+ZV4DSLVJLSYI=
github.com/Masterminds/goutils v1.1.1/go.mod h1:8cTjp+g8YejhMuvIA5y2vz3BpJxksy863GQaJW2MFNU=
Expand Down
9 changes: 5 additions & 4 deletions internal/resources/schemas/instance_schemas.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,11 @@ func GetInstanceContainerSchema() *schema.Schema {
},
},
},
"hostname": computedString(),
"max_storage": computedInt(),
"max_memory": computedInt(),
"max_cores": computedInt(),
"hostname": computedString(),
// Needed datatype is int64
// "max_storage": computedInt(),
// "max_memory": computedInt(),
"max_cores": computedInt(),
},
},
}
Expand Down

0 comments on commit aa53a0b

Please sign in to comment.