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 <opensource@outscale.com>
  • Loading branch information
outscale-toa committed Feb 2, 2022
1 parent 99e8881 commit bb47347
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
0.5.2 (February 02, 2022)
========================

FEATURES:
---------

* Enhance User-Agent #56

BUG FIXES:
----------

* Fix Resource outscale_route_table_link import issue (TPD-2011)
* Update old wiki links to new docs address #49

0.5.1 (December 21, 2021)
========================

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.1"
version = "0.5.2"
}
}
}
Expand Down Expand Up @@ -60,7 +60,7 @@ terraform {
required_providers {
outscale = {
source = "outscale-dev/outscale"
version = "0.5.1"
version = "0.5.2"
}
}
}
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.1 https://github.com/outscale-dev/terraform-provider-outscale
$ git clone --branch v0.5.2 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.1
$ go build -o terraform-provider-outscale_v0.5.2
```

Using the provider
----------------------
1. Download and install [Terraform](https://www.terraform.io/downloads.html)
2. Move the plugin to the repository ~/.terraform/plugins/registry.terraform.io/outscale-dev/outscale/0.5.1/linux_amd64/.
2. Move the plugin to the repository ~/.terraform.d/plugins/registry.terraform.io/outscale-dev/outscale/0.5.2/linux_amd64/.

```shell
$ mv terraform-provider-outscale_v0.5.1 ~/.terraform/plugins/registry.terraform.io/outscale-dev/outscale/0.5.1/linux_amd64/.
$ mv terraform-provider-outscale_v0.5.2 ~/.terraform.d/plugins/registry.terraform.io/outscale-dev/outscale/0.5.2/linux_amd64/.
```

3. Execute `terraform init`
Expand Down

0 comments on commit bb47347

Please sign in to comment.