Skip to content

Commit

Permalink
Update README and CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
outscale-toa committed Feb 10, 2023
1 parent 8fc6493 commit 73c5ea4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 10 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
0.8.2 (February 10, 2023)
========================

* Update gpg_key for new organization

0.8.1 (February 09, 2023)
========================

* Fix wrong tags

0.8.0 (February 09, 2023)
========================

Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ terraform {
required_providers {
outscale = {
source = "outscale/outscale"
version = "0.8.0"
version = "0.8.2"
}
}
}
Expand Down Expand Up @@ -49,7 +49,7 @@ terraform {
required_providers {
outscale = {
source = "outscale/outscale"
version = "0.8.0"
version = "0.8.2"
}
}
}
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.8.0 https://github.com/outscale/terraform-provider-outscale
git clone --branch v0.8.2 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.8.0
go build -o terraform-provider-outscale_v0.8.2
```
## 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/outscale/0.8.0/linux_amd64/.
2. Move the plugin to the repository ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/0.8.2/linux_amd64/.
```shell
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
mkdir -p ~/.terraform.d/plugins/regisutry.terraform.io/outscale/outscale/0.8.2/linux_amd64
mv terraform-provider-outscale_v0.8.2 ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/0.8.2/linux_amd64
```
3. Execute `terraform init

Expand All @@ -97,10 +97,10 @@ mv terraform-provider-outscale_v0.8.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.8.0/darwin_arm64
2. Move the plugin to the repository ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/0.8.2/darwin_arm64
```shell
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
mkdir -p ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/0.8.2/darwin_arm64
mv terraform-provider-outscale_v0.8.2 ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/0.8.2/darwin_arm64
```

3. Execute `terraform init`
Expand Down

0 comments on commit 73c5ea4

Please sign in to comment.