diff --git a/CHANGELOG.md b/CHANGELOG.md index fea863c8..9f9300a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,16 @@ +## [v1.0.46](https://github.com/civo/terraform-provider-civo/releases/tag/v1.0.46) (10 July 2024) + +### Merged +- [#254](https://github.com/civo/terraform-provider-civo/pull/254) - Allow updating reserved_ip4 for instance resource +- [#253](https://github.com/civo/terraform-provider-civo/pull/253) - Wait for the instance to be completely deleted +- [#240](https://github.com/civo/terraform-provider-civo/pull/240) - Make CIDR immutable for network resource +- [#243](https://github.com/civo/terraform-provider-civo/pull/243) - Check for Resource Already Exist Error before retry +- [#237](https://github.com/civo/terraform-provider-civo/pull/237) - Make firewall ID to be a required field for instance +- [#230](https://github.com/civo/terraform-provider-civo/pull/230) - Create Default firewall for network when not specified. +- [#239](https://github.com/civo/terraform-provider-civo/pull/239) - Add cidr and Nameservers as computed +- [#238](https://github.com/civo/terraform-provider-civo/pull/238) - ForceNew on Region in network resource + ## [v1.0.45](https://github.com/civo/terraform-provider-civo/releases/tag/v1.0.45) (20 June 2024) ### Merged diff --git a/docs/resources/instance.md b/docs/resources/instance.md index fb693ff8..ea2d59ed 100644 --- a/docs/resources/instance.md +++ b/docs/resources/instance.md @@ -49,10 +49,13 @@ resource "civo_instance" "foo" { ## Schema +### Required + +- `firewall_id` (String) The ID of the firewall to use, from the current list. If left blank or not sent, the default firewall will be used (open to all) + ### Optional - `disk_image` (String) The ID for the disk image to use to build the instance -- `firewall_id` (String) The ID of the firewall to use, from the current list. If left blank or not sent, the default firewall will be used (open to all) - `hostname` (String) A fully qualified domain name that should be set as the instance's hostname - `initial_user` (String) The name of the initial user created on the server (optional; this will default to the template's default_username and fallback to civo) - `network_id` (String) This must be the ID of the network from the network listing (optional; default network used when not specified)