From 8fc6493361c381a7f32f99d206143e96b727ba69 Mon Sep 17 00:00:00 2001 From: Thiery Ouattara Date: Mon, 6 Feb 2023 15:14:43 +0000 Subject: [PATCH] Update CHANGELOG and README --- CHANGELOG.md | 24 ++++++++++++++++++++++++ README.md | 24 ++++++++++++------------ 2 files changed, 36 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f37eeb339..046ec9640 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +0.8.0 (February 09, 2023) +======================== + +BUG FIXES: +---------- + +* Timeout for Image/Snapshot export task is too long ([GH-87](https://github.com/outscale/terraform-provider-outscale/issues/87)) +* Terminated VMs cannot be restarted ([GH-89](https://github.com/outscale/terraform-provider-outscale/issues/89)) +* Better handle "is_source_dest_checked" option on outscale_vm ([GH-108](https://github.com/outscale/terraform-provider-outscale/issues/108)) +* Error message when updating tags on linked volumes ([GH-221](https://github.com/outscale/terraform-provider-outscale/issues/221)) +* Incorrect iops value in block_device_mappings ([GH-239](https://github.com/outscale/terraform-provider-outscale/issues/239)) +* Improve error message when the used endpoint/proxy is invalid ([GH-245](https://github.com/outscale/terraform-provider-outscale/issues/245)) + +FEATURES: +--------- + +* Check the behaviour of the provider when the resource is removed manually by the user ([GH-19](https://github.com/outscale/terraform-provider-outscale/issues/19)) +* "bsu_optimized" parameter in VM is deprecated in our API ([GH-217](https://github.com/outscale/terraform-provider-outscale/issues/217)) + +IMPROVEMENT: +----------- + +* Move ```terraform-provider-outscale``` repository form ```outscale-dev``` to ```outscale``` organization + 0.7.0 (November 24, 2022) ======================== diff --git a/README.md b/README.md index efa40bcde..9ad90d37d 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,8 @@ Add the following lines in the Terraform configuration to permit to get the prov terraform { required_providers { outscale = { - source = "outscale-dev/outscale" - version = "0.7.0" + source = "outscale/outscale" + version = "0.8.0" } } } @@ -48,8 +48,8 @@ terraform { required_version = ">= 0.13" required_providers { outscale = { - source = "outscale-dev/outscale" - version = "0.7.0" + source = "outscale/outscale" + version = "0.8.0" } } } @@ -73,22 +73,22 @@ Clone repository to: `$GOPATH/src/github.com/terraform-providers/terraform-provi ```sh mkdir -p $GOPATH/src/github.com/terraform-providers cd $GOPATH/src/github.com/terraform-providers -git clone --branch v0.7.0 https://github.com/outscale-dev/terraform-provider-outscale +git clone --branch v0.8.0 https://github.com/outscale/terraform-provider-outscale ``` Enter the provider directory and build the provider ```sh cd $GOPATH/src/github.com/terraform-providers/terraform-provider-outscale -go build -o terraform-provider-outscale_v0.7.0 +go build -o terraform-provider-outscale_v0.8.0 ``` ## Using the provider ### On Linux 1. Download and install [Terraform](https://www.terraform.io/downloads.html) -2. Move the plugin to the repository ~/.terraform.d/plugins/registry.terraform.io/outscale-dev/outscale/0.7.0/linux_amd64/. +2. Move the plugin to the repository ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/0.8.0/linux_amd64/. ```shell -mkdir -p ~/.terraform.d/plugins/regisutry.terraform.io/outscale-dev/outscale/0.7.0/linux_amd64 -mv terraform-provider-outscale_v0.7.0 ~/.terraform.d/plugins/registry.terraform.io/outscale-dev/outscale/0.7.0/linux_amd64 +mkdir -p ~/.terraform.d/plugins/regisutry.terraform.io/outscale/outscale/0.8.0/linux_amd64 +mv terraform-provider-outscale_v0.8.0 ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/0.8.0/linux_amd64 ``` 3. Execute `terraform init @@ -97,10 +97,10 @@ mv terraform-provider-outscale_v0.7.0 ~/.terraform.d/plugins/registry.terraform. ### On macOS 1. Download and install [Terraform](https://www.terraform.io/downloads.html) -2. Move the plugin to the repository ~/.terraform.d/plugins/registry.terraform.io/outscale-dev/outscale/0.7.0/darwin_arm64 +2. Move the plugin to the repository ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/0.8.0/darwin_arm64 ```shell -mkdir -p ~/.terraform.d/plugins/registry.terraform.io/outscale-dev/outscale/0.7.0/darwin_arm64 -mv terraform-provider-outscale_v0.7.0 ~/.terraform.d/plugins/registry.terraform.io/outscale-dev/outscale/0.7.0/darwin_arm64 +mkdir -p ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/0.8.0/darwin_arm64 +mv terraform-provider-outscale_v0.8.0 ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/0.8.0/darwin_arm64 ``` 3. Execute `terraform init`