From 7f5ba2824891bdac0b3542d848342d302349ea0c Mon Sep 17 00:00:00 2001 From: GitHub Actions <> Date: Sun, 1 Oct 2023 17:19:47 +0000 Subject: [PATCH] Update docs and CHANGELOG.md --- CHANGELOG.md | 6 ++++++ docs/data-sources/size.md | 7 ++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ecfe31d..f4d377d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ +## [v1.0.37](https://github.com/civo/terraform-provider-civo/releases/tag/v1.0.37) (1 October 2023) + +### Merged +- [#188](https://github.com/civo/terraform-provider-civo/pull/188) - Update the civo_size with the new format and add more examples +- [#175](https://github.com/civo/terraform-provider-civo/pull/175) - fix(.github): adds github workflows for ISSUE TEMPLATES for bug addition, documentation add, feature request and security + ## [v1.0.36](https://github.com/civo/terraform-provider-civo/releases/tag/v1.0.36) (24 July 2023) ### Merged diff --git a/docs/data-sources/size.md b/docs/data-sources/size.md index bfc268f..0b28ea5 100644 --- a/docs/data-sources/size.md +++ b/docs/data-sources/size.md @@ -24,7 +24,6 @@ data "civo_size" "small" { key = "type" values = ["instance"] } - } resource "civo_instance" "my-test-instance" { @@ -54,7 +53,7 @@ resource "civo_instance" "my-test-instance" { Required: -- `key` (String) Filter sizes by this key. This may be one of `cpu`, `description`, `disk`, `name`, `ram`, `selectable`, `type`. +- `key` (String) Filter sizes by this key. This may be one of `cpu`, `description`, `disk`, `gpu_type`, `gpu`, `name`, `ram`, `selectable`, `type`. - `values` (List of String) Only retrieves `sizes` which keys has value that matches one of the values provided here Optional: @@ -68,7 +67,7 @@ Optional: Required: -- `key` (String) Sort sizes by this key. This may be one of `cpu`, `description`, `disk`, `name`, `ram`, `selectable`, `type`. +- `key` (String) Sort sizes by this key. This may be one of `cpu`, `description`, `disk`, `gpu_type`, `gpu`, `name`, `ram`, `selectable`, `type`. Optional: @@ -83,6 +82,8 @@ Read-Only: - `cpu` (Number) - `description` (String) - `disk` (Number) +- `gpu` (Number) +- `gpu_type` (String) - `name` (String) - `ram` (Number) - `selectable` (Boolean)