Skip to content

Commit

Permalink
Update docs and CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Oct 1, 2023
1 parent 41cf9e4 commit 7f5ba28
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
7 changes: 4 additions & 3 deletions docs/data-sources/size.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ data "civo_size" "small" {
key = "type"
values = ["instance"]
}
}
resource "civo_instance" "my-test-instance" {
Expand Down Expand Up @@ -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:
Expand All @@ -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:

Expand All @@ -83,6 +82,8 @@ Read-Only:
- `cpu` (Number)
- `description` (String)
- `disk` (Number)
- `gpu` (Number)
- `gpu_type` (String)
- `name` (String)
- `ram` (Number)
- `selectable` (Boolean)
Expand Down

0 comments on commit 7f5ba28

Please sign in to comment.