Skip to content

Commit

Permalink
Update CHANGELOG and README
Browse files Browse the repository at this point in the history
  • Loading branch information
outscale-toa committed Feb 9, 2023
1 parent 1967c28 commit 8fc6493
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 12 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
========================

Expand Down
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
}
Expand All @@ -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"
}
}
}
Expand All @@ -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

Expand All @@ -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`
Expand Down

0 comments on commit 8fc6493

Please sign in to comment.