diff --git a/CHANGELOG.md b/CHANGELOG.md index b9fc6002e..e8bc38f4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +1.0.0-rc.1 (June 19, 2024) +======================== +BUG FIXES: +---------- + +* Error in attributes value for healthy_threshold ([GH-450](https://github.com/outscale/terraform-provider-outscale/issues/450)) + +FEATURES: +--------- + +* Enable adding Tag on boot disk ([GH-110](https://github.com/outscale/terraform-provider-outscale/issues/110)) +* Enable linked multiple flexible GPUs to VM ([GH-220](https://github.com/outscale/terraform-provider-outscale/issues/220)) + +IMPROVEMENT: +----------- +* Rename ``` outscale_volumes_link ``` to ``` outscale_volume_link ``` +* Upgrade to Terraform-plugin-sdkv2 and terraform-plugin-framework ([GH-150](https://github.com/outscale/terraform-provider-outscale/issues/150)) +* Somes refactoring + 0.12.0 (April 13, 2024) ======================== BUG FIXES: diff --git a/README.md b/README.md index e37d06294..bd1ca1a54 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ - Website: https://www.terraform.io - [![Gitter chat](https://badges.gitter.im/hashicorp-terraform/Lobby.png)](https://gitter.im/hashicorp-terraform/Lobby) - Mailing list: [Google Groups](http://groups.google.com/group/terraform-tool) -Terraform +Terraform ## Requirements @@ -13,13 +13,86 @@ - [Go](https://golang.org/doc/install) 1.22.0 (to build the provider plugin) +## Migration to v1 + +> [!WARNING] +> +> Before you begin using the ```v1``` binary on your Terraform code, make sure to back up your state file! +> If you are using a local state file, you can just copy of your terraform.tfstate file in your project directory. +> +> If you are using a remote backend such as an S3 bucket, make sure that you follow the backup procedures and that you exercise the restore procedure at least once. +> +> Additionally, make sure you backup or version your code as migration will require some code changes (on Flexible_gpu resource). + +### Step 1: Upgrade provider version + +```sh +terraform { + required_providers { + outscale = { + source = "outscale/outscale" + version = "1.0.0-rc.1" + } + } +} + +provider "outscale" { + # Configuration options +} +``` + +```sh +terraform init -upgrade +``` + +### Step 2: Edit terraform state and configuration files + +Somes block types changed in terraform state, the following script will delete those blocks. + +Then ``` terraform refresh``` or ``` terraform apply ``` will set the right block type. + +#### On Linux +```sh +terraform fmt +sed -i '/"block_device_mappings_created": \[/, /\],/d' terraform.tfstate +sed -i 's/outscale_volumes_link/outscale_volume_link/g' terraform.tfstate +sed -i '/"link_public_ip": {/, /},/d' terraform.tfstate +sed -i '/"link_nic": {/, /},/d' terraform.tfstate +sed -i '/"flexible_gpu_id": "/, /",/d' terraform.tfstate +sed -i 's/outscale_volumes_link/outscale_volume_link/g' *.tf +sed -i 's/flexible_gpu_id /flexible_gpu_ids /g' *.tf +sed -i '/flexible_gpu_ids /s/= /= \[/' *.tf +sed -i '/outscale_flexible_gpu\./s/$/ \]/' *.tf +terraform fmt +``` + +#### On MacOS +```sh +terraform fmt +sed -i='' '/"block_device_mappings_created": \[/, /\],/d' terraform.tfstate +sed -i='' 's/outscale_volumes_link/outscale_volume_link/g' terraform.tfstate +sed -i='' '/"link_public_ip": {/, /},/d' terraform.tfstate +sed -i='' '/"link_nic": {/, /},/d' terraform.tfstate +sed -i='' '/"flexible_gpu_id": "/, /",/d' terraform.tfstate +sed -i='' 's/outscale_volumes_link/outscale_volume_link/g' *.tf +sed -i='' 's/flexible_gpu_id /flexible_gpu_ids /g' *.tf +sed -i='' '/flexible_gpu_ids /s/= /= \[/' *.tf +sed -i='' '/outscale_flexible_gpu\./s/$/\]/' *.tf +terraform fmt +``` +### Step 3: Refresh configuration to update terraform state + +```sh +terraform refresh +``` + ## Breaking change > **Warning** > > We have a broken change on our api when creating access_key without expiration date for all version less then v0.9.0. ([GH-issues](https://github.com/outscale/terraform-provider-outscale/issues/342)) > -> We recommend to upgrade on the latest ([v0.12.0](https://registry.terraform.io/providers/outscale/outscale/latest)) +> We recommend to upgrade on the latest ([v1.0.0-rc.1](https://registry.terraform.io/providers/outscale/outscale/latest)) ## Using the Provider with Terraform @@ -36,7 +109,7 @@ terraform { required_providers { outscale = { source = "outscale/outscale" - version = "0.12.0" + version = "1.0.0-rc.1" } } } @@ -56,7 +129,7 @@ terraform { required_providers { outscale = { source = "outscale/outscale" - version = "0.12.0" + version = "1.0.0-rc.1" } } } @@ -89,7 +162,7 @@ terraform { required_providers { outscale = { source = "outscale/outscale" - version = "0.12.0" + version = "1.0.0-rc.1" } } } @@ -113,12 +186,12 @@ Clone repository to: `$GOPATH/src/github.com/outscale/terraform-provider-outscal ```sh mkdir -p $GOPATH/src/github.com/terraform-providers cd $GOPATH/src/github.com/terraform-providers -git clone --branch v0.12.0 https://github.com/outscale/terraform-provider-outscale +git clone --branch v1.0.0-rc.1 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.12.0 +go build -o terraform-provider-outscale_v1.0.0-rc.1 ``` ## Using the provider built ### For Terraform @@ -126,10 +199,10 @@ go build -o terraform-provider-outscale_v0.12.0 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/outscale/0.12.0/linux_amd64/. +2. Move the plugin to the repository ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/1.0.0-rc.1/linux_amd64/. ```shell -mkdir -p ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/0.12.0/linux_amd64 -mv terraform-provider-outscale_v0.12.0 ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/0.12.0/linux_amd64 +mkdir -p ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/1.0.0-rc.1/linux_amd64 +mv terraform-provider-outscale_v1.0.0-rc.1 ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/1.0.0-rc.1/linux_amd64 ``` 3. Execute `terraform init` @@ -138,10 +211,10 @@ mv terraform-provider-outscale_v0.12.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/outscale/0.12.0/darwin_arm64 +2. Move the plugin to the repository ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/1.0.0-rc.1/darwin_arm64 ```shell -mkdir -p ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/0.12.0/darwin_arm64 -mv terraform-provider-outscale_v0.12.0 ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/0.12.0/darwin_arm64 +mkdir -p ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/1.0.0-rc.1/darwin_arm64 +mv terraform-provider-outscale_v1.0.0-rc.1 ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/1.0.0-rc.1/darwin_arm64 ``` 3. Execute `terraform init` @@ -153,10 +226,10 @@ mv terraform-provider-outscale_v0.12.0 ~/.terraform.d/plugins/registry.terraform 1. Download and install [OpenTofu](https://opentofu.org/docs/intro/install/deb/) -2. Move the plugin to the repository ~/.terraform.d/plugins/registry.opentofu.org/outscale/outscale/0.12.0/linux_amd64/. +2. Move the plugin to the repository ~/.terraform.d/plugins/registry.opentofu.org/outscale/outscale/1.0.0-rc.1/linux_amd64/. ```shell -mkdir -p ~/.terraform.d/plugins/registry.opentofu.org/outscale/outscale/0.12.0/linux_amd64 -mv terraform-provider-outscale_v0.12.0 ~/.terraform.d/plugins/registry.opentofu.org/outscale/outscale/0.12.0/linux_amd64 +mkdir -p ~/.terraform.d/plugins/registry.opentofu.org/outscale/outscale/1.0.0-rc.1/linux_amd64 +mv terraform-provider-outscale_v1.0.0-rc.1 ~/.terraform.d/plugins/registry.opentofu.org/outscale/outscale/1.0.0-rc.1/linux_amd64 ``` 3. Execute `tofu init` @@ -165,10 +238,10 @@ mv terraform-provider-outscale_v0.12.0 ~/.terraform.d/plugins/registry.opentofu. #### On macOS 1. Download and install [OpenTofu](https://opentofu.org/docs/intro/install/homebrew/) -2. Move the plugin to the repository ~/.terraform.d/plugins/registry.opentofu.org/outscale/outscale/0.12.0/darwin_arm64 +2. Move the plugin to the repository ~/.terraform.d/plugins/registry.opentofu.org/outscale/outscale/1.0.0-rc.1/darwin_arm64 ```shell -mkdir -p ~/.terraform.d/plugins/registry.opentofu.org/outscale/outscale/0.12.0/darwin_arm64 -mv terraform-provider-outscale_v0.12.0 ~/.terraform.d/plugins/registry.opentofu.org/outscale/outscale/0.12.0/darwin_arm64 +mkdir -p ~/.terraform.d/plugins/registry.opentofu.org/outscale/outscale/1.0.0-rc.1/darwin_arm64 +mv terraform-provider-outscale_v1.0.0-rc.1 ~/.terraform.d/plugins/registry.opentofu.org/outscale/outscale/1.0.0-rc.1/darwin_arm64 ``` 3. Execute `tofu init`