Skip to content

Commit

Permalink
v2.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hekki committed Dec 16, 2024
1 parent a654afa commit 90ee375
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 13 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# CHANGELOG

## 2.26.0 (2024/12/16)

- AppRun対応のドキュメント作成 #1206
- AppRunのenvをTypeSetに変更 #1203
- Daily Integration Testにおいて、AppRunはFakeModeの場合はテストをスキップする #1202
- AppRun対応 #1200
- GoReleaser v2 #1195
- go: bump github.com/hashicorp/go-retryablehttp from 0.7.5 to 0.7.7 #1194
- fix: 一部のテストケースをAcceptance Testでのみ実行するように修正 #1191
- docs: exampleでのデフォルト値をより汎用的な用途向けに修正 #1189
- go: bump github.com/stretchr/testify from 1.9.0 to 1.10.0 #1186
- リソース名長エラーを修正 #1181

## 2.25.5 (2024/10/29)

- sakuracloud_proxylb_acmeのimport時のバグを修正 #1174
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ terraform {
# We recommend pinning to the specific version of the SakuraCloud Provider you're using
# since new versions are released frequently
version = "2.25.5"
version = "2.26.0"
#version = "~> 2"
}
}
Expand Down Expand Up @@ -78,5 +78,5 @@ resource "sakuracloud_server" "example" {
## License

`terraform-proivder-sakuracloud` Copyright (C) 2016-2023 terraform-provider-sakuraclou authors.

This project is published under [Apache 2.0 License](LICENSE).
2 changes: 1 addition & 1 deletion examples/website/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
provider "sakuracloud" {
# We recommend pinning to the specific version of the SakuraCloud Provider you're using
# since new versions are released frequently
version = "2.25.5"
version = "2.26.0"

# More information on the authentication methods supported by
# the SakuraCloud Provider can be found here:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# }
# sakuracloud = {
# source = "sacloud/sakuracloud"
# version = "2.25.5"
# version = "2.26.0"
# }
# }
#}
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import "fmt"

var (
// Version app version
Version = "2.25.5"
Version = "2.26.0"
// Revision git commit short commithash
Revision = "xxxxxx" // set on build
)
Expand Down
8 changes: 3 additions & 5 deletions website/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ terraform {
# We recommend pinning to the specific version of the SakuraCloud Provider you're using
# since new versions are released frequently
version = "2.25.5"
version = "2.26.0"
#version = "~> 2"
}
}
Expand Down Expand Up @@ -63,8 +63,8 @@ provider "sakuracloud" {
### Environment variables

You can provide your credentials via the `SAKURACLOUD_ACCESS_TOKEN` and
`SAKURACLOUD_ACCESS_TOKEN_SECRET`, environment variables, representing your
Access Token and your Access Secret, respectively.
`SAKURACLOUD_ACCESS_TOKEN_SECRET`, environment variables, representing your
Access Token and your Access Secret, respectively.

```hcl
provider "sakuracloud" {}
Expand Down Expand Up @@ -113,5 +113,3 @@ Example shared credentials file is follows:
* `trace` - (Optional) The flag to enable output trace log. It can also be sourced from the `SAKURACLOUD_TRACE` environment variables, or via a shared credentials file if `profile` is specified.
* `zone` - (Optional) The name of zone to use as default. It must be provided, but it can also be sourced from the `SAKURACLOUD_ZONE` environment variables, or via a shared credentials file if `profile` is specified.
* `zones` - (Optional) A list of available SakuraCloud zone name. It can also be sourced via a shared credentials file if `profile` is specified. Default:[`is1a`, `is1b`, `tk1a`, `tk1v`].


4 changes: 1 addition & 3 deletions website/docs/r/certificate_authority.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Manages a SakuraCloud sakuracloud_certificate_authority.
# }
# sakuracloud = {
# source = "sacloud/sakuracloud"
# version = "2.25.5"
# version = "2.26.0"
# }
# }
#}
Expand Down Expand Up @@ -234,5 +234,3 @@ A `server` block exports the following:
* `not_after` - The date on which the certificate validity period ends, in RFC3339 format.
* `not_before` - The date on which the certificate validity period begins, in RFC3339 format.
* `serial_number` - The body of the CA's certificate in PEM format.


0 comments on commit 90ee375

Please sign in to comment.