Skip to content

Commit

Permalink
update README and CHANGELOG
Browse files Browse the repository at this point in the history
Signed-off-by: Thiery Ouattara <thiery.ouattara@outscale.com>
  • Loading branch information
outscale-toa committed Jul 26, 2022
1 parent 0094aa6 commit 2081c11
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 6 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
0.5.4 (July 26, 2022)
========================

BUG FIXES:
----------
* Fix ```public_ip_id``` attribute when imported outscale_nat_service resource ([GH-95](https://github.com/outscale-dev/terraform-provider-outscale/issues/95))
* Fix issue with importing server_certificate ([GH-97](https://github.com/outscale-dev/terraform-provider-outscale/issues/97))
* Fix StartVM action when updating VM tags ([GH-86](https://github.com/outscale-dev/terraform-provider-outscale/issues/86))
* Fix ```secondary_private_ip_count``` parameter in outscale_nic_private_ip resource ([GH-100](https://github.com/outscale-dev/terraform-provider-outscale/issues/100))

IMPROVEMENT:
-----------

* Update retrying when api call throttled ([GH-106](https://github.com/outscale-dev/terraform-provider-outscale/issues/106))
* Improve integration and acceptance tests
* Add ```frieza-clean``` to clean account after running tests

0.5.3 (Mars 25, 2022)
========================

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ terraform {
required_providers {
outscale = {
source = "outscale-dev/outscale"
version = "0.5.3"
version = "0.5.4"
}
}
}
Expand Down Expand Up @@ -60,7 +60,7 @@ terraform {
required_providers {
outscale = {
source = "outscale-dev/outscale"
version = "0.5.3"
version = "0.5.4"
}
}
}
Expand All @@ -87,23 +87,23 @@ 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.5.3 https://github.com/outscale-dev/terraform-provider-outscale
$ git clone --branch v0.5.4 https://github.com/outscale-dev/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.5.3
$ go build -o terraform-provider-outscale_v0.5.4
```

Using the provider
----------------------
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.5.3/linux_amd64/.
2. Move the plugin to the repository ~/.terraform.d/plugins/registry.terraform.io/outscale-dev/outscale/0.5.4/linux_amd64/.

```shell
$ mv terraform-provider-outscale_v0.5.3 ~/.terraform.d/plugins/registry.terraform.io/outscale-dev/outscale/0.5.3/linux_amd64/.
$ mv terraform-provider-outscale_v0.5.4 ~/.terraform.d/plugins/registry.terraform.io/outscale-dev/outscale/0.5.4/linux_amd64/.
```

3. Execute `terraform init`
Expand Down

0 comments on commit 2081c11

Please sign in to comment.