Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README and CHANGELOG #477

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
1.0.0-rc.2 (Septembre 13, 2024)
========================
BUG FIXES:
----------

* Error when setting endpoints in Provider configuration ([GH-475](https://github.com/outscale/terraform-provider-outscale/issues/475))
* Error on plan after migration v1.0.0 on link public IP ([GH-469](https://github.com/outscale/terraform-provider-outscale/issues/469))
* Bug with the vpn connection ([GH-468](https://github.com/outscale/terraform-provider-outscale/issues/468))
* Migration to1.0.0-rc.1: outscale_net_peering and outscale_net_peering_acceptation errors([GH-464](https://github.com/outscale/terraform-provider-outscale/issues/464))
* Fail to import ouscale_nic if the NIC is attached to a public IP ([GH-461](https://github.com/outscale/terraform-provider-outscale/issues/461))

IMPROVEMENTS:
-----------
* Update tests and osc-sdk-go
* Some refactoring

1.0.0-rc.1 (June 19, 2024)
========================
BUG FIXES:
Expand Down
38 changes: 19 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ terraform {
required_providers {
outscale = {
source = "outscale/outscale"
version = "1.0.0-rc.1"
version = "1.0.0-rc.2"
}
}
}
Expand Down Expand Up @@ -99,7 +99,7 @@ terraform refresh
>
> 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 ([v1.0.0-rc.1](https://registry.terraform.io/providers/outscale/outscale/latest))
> We recommend to upgrade on the latest ([v1.0.0-rc.2](https://registry.terraform.io/providers/outscale/outscale/latest))

## Using the Provider with Terraform

Expand All @@ -116,7 +116,7 @@ terraform {
required_providers {
outscale = {
source = "outscale/outscale"
version = "1.0.0-rc.1"
version = "1.0.0-rc.2"
}
}
}
Expand All @@ -136,7 +136,7 @@ terraform {
required_providers {
outscale = {
source = "outscale/outscale"
version = "1.0.0-rc.1"
version = "1.0.0-rc.2"
}
}
}
Expand Down Expand Up @@ -169,7 +169,7 @@ terraform {
required_providers {
outscale = {
source = "outscale/outscale"
version = "1.0.0-rc.1"
version = "1.0.0-rc.2"
}
}
}
Expand All @@ -193,23 +193,23 @@ 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 v1.0.0-rc.1 https://github.com/outscale/terraform-provider-outscale
git clone --branch v1.0.0-rc.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_v1.0.0-rc.1
go build -o terraform-provider-outscale_v1.0.0-rc.2
```
## Using the provider built
### For Terraform
#### 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/1.0.0-rc.1/linux_amd64/.
2. Move the plugin to the repository ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/1.0.0-rc.2/linux_amd64/.
```shell
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
mkdir -p ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/1.0.0-rc.2/linux_amd64
mv terraform-provider-outscale_v1.0.0-rc.2 ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/1.0.0-rc.2/linux_amd64
```
3. Execute `terraform init`

Expand All @@ -218,10 +218,10 @@ mv terraform-provider-outscale_v1.0.0-rc.1 ~/.terraform.d/plugins/registry.terra
#### 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/1.0.0-rc.1/darwin_arm64
2. Move the plugin to the repository ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/1.0.0-rc.2/darwin_arm64
```shell
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
mkdir -p ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/1.0.0-rc.2/darwin_arm64
mv terraform-provider-outscale_v1.0.0-rc.2 ~/.terraform.d/plugins/registry.terraform.io/outscale/outscale/1.0.0-rc.2/darwin_arm64
```

3. Execute `terraform init`
Expand All @@ -233,10 +233,10 @@ mv terraform-provider-outscale_v1.0.0-rc.1 ~/.terraform.d/plugins/registry.terra

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/1.0.0-rc.1/linux_amd64/.
2. Move the plugin to the repository ~/.terraform.d/plugins/registry.opentofu.org/outscale/outscale/1.0.0-rc.2/linux_amd64/.
```shell
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
mkdir -p ~/.terraform.d/plugins/registry.opentofu.org/outscale/outscale/1.0.0-rc.2/linux_amd64
mv terraform-provider-outscale_v1.0.0-rc.2 ~/.terraform.d/plugins/registry.opentofu.org/outscale/outscale/1.0.0-rc.2/linux_amd64
```
3. Execute `tofu init`

Expand All @@ -245,10 +245,10 @@ mv terraform-provider-outscale_v1.0.0-rc.1 ~/.terraform.d/plugins/registry.opent
#### 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/1.0.0-rc.1/darwin_arm64
2. Move the plugin to the repository ~/.terraform.d/plugins/registry.opentofu.org/outscale/outscale/1.0.0-rc.2/darwin_arm64
```shell
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
mkdir -p ~/.terraform.d/plugins/registry.opentofu.org/outscale/outscale/1.0.0-rc.2/darwin_arm64
mv terraform-provider-outscale_v1.0.0-rc.2 ~/.terraform.d/plugins/registry.opentofu.org/outscale/outscale/1.0.0-rc.2/darwin_arm64
```

3. Execute `tofu init`
Expand Down
Loading