Skip to content

Commit

Permalink
ci: Prepare for the 0.9.0 release (#512)
Browse files Browse the repository at this point in the history
  • Loading branch information
wai-wong-edb authored Mar 27, 2024
1 parent d2fabcf commit 36675c4
Show file tree
Hide file tree
Showing 46 changed files with 67 additions and 60 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## v0.9.0 (March 27. 2024)
Features:
* Added support to pause and resume a cluster for `biganimal_pgd` and `biganimal_cluster` resources

Bug Fixes:
* Fixed maintenance window plan inconsistent with response

## v0.8.1 (February 29. 2024)
Features:
* Updated access key requirements documentation
Expand Down
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ HOSTNAME=registry.terraform.io
NAMESPACE=EnterpriseDB
NAME=biganimal
BINARY=terraform-provider-${NAME}
VERSION=0.8.1
VERSION=0.9.0

# Figure out the OS and ARCH of the
# builder machine
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/data-sources/pgd.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/aws_connection.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/azure_connection.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions docs/resources/cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -126,7 +126,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -261,7 +261,7 @@ output "faraway_replica_ids" {
- `cluster_architecture` (Block, Optional) Cluster architecture. See [Supported cluster types](https://www.enterprisedb.com/docs/biganimal/latest/overview/02_high_availability/) for details. (see [below for nested schema](#nestedblock--cluster_architecture))
- `csp_auth` (Boolean) Is authentication handled by the cloud service provider. Available for AWS only, See [Authentication](https://www.enterprisedb.com/docs/biganimal/latest/getting_started/creating_a_cluster/#authentication) for details.
- `maintenance_window` (Attributes) Custom maintenance window. (see [below for nested schema](#nestedatt--maintenance_window))
- `pause` (Boolean) Pause cluster. If true it will put the cluster on pause and set the phase as paused, if false it will resume the cluster and set the phase as healthy
- `pause` (Boolean) Pause cluster. If true it will put the cluster on pause and set the phase as paused, if false it will resume the cluster and set the phase as healthy. Pausing a cluster allows you to save on compute costs without losing data or cluster configuration settings. While paused, clusters aren't upgraded or patched, but changes are applied when the cluster resumes. Pausing a high availability cluster shuts down all cluster nodes
- `pe_allowed_principal_ids` (Set of String) Cloud provider subscription/account ID, need to be specified when cluster is deployed on BigAnimal's cloud account.
- `pg_bouncer` (Attributes) Pg bouncer. (see [below for nested schema](#nestedatt--pg_bouncer))
- `pg_config` (Block Set) Database configuration parameters. See [Modifying database configuration parameters](https://www.enterprisedb.com/docs/biganimal/latest/using_cluster/03_modifying_your_cluster/05_db_configuration_parameters/) for details. (see [below for nested schema](#nestedblock--pg_config))
Expand Down
4 changes: 2 additions & 2 deletions docs/resources/faraway_replica.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -102,7 +102,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down
26 changes: 13 additions & 13 deletions docs/resources/pgd.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -110,7 +110,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -279,7 +279,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -382,7 +382,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -557,7 +557,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -657,7 +657,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -826,7 +826,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -929,7 +929,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -1104,7 +1104,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -1204,7 +1204,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -1373,7 +1373,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -1480,7 +1480,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -1669,7 +1669,7 @@ output "password" {
### Optional

- `most_recent` (Boolean) Show the most recent cluster when there are multiple clusters with the same name
- `pause` (Boolean) Pause cluster. If true it will put the cluster on pause and set the phase as paused, if false it will resume the cluster and set the phase as healthy
- `pause` (Boolean) Pause cluster. If true it will put the cluster on pause and set the phase as paused, if false it will resume the cluster and set the phase as healthy. Pausing a cluster allows you to save on compute costs without losing data or cluster configuration settings. While paused, clusters aren't upgraded or patched, but changes are applied when the cluster resumes. Pausing a Postgres Distributed(PGD) cluster shuts down all cluster nodes
- `project_id` (String) BigAnimal Project ID.
- `timeouts` (Block, Optional) (see [below for nested schema](#nestedblock--timeouts))
- `witness_groups` (Attributes Set) (see [below for nested schema](#nestedatt--witness_groups))
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/project.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/region.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/data-sources/biganimal_aws_connection/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
}
}
2 changes: 1 addition & 1 deletion examples/data-sources/biganimal_cluster/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
}
}
2 changes: 1 addition & 1 deletion examples/data-sources/biganimal_pgd/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
}
}
2 changes: 1 addition & 1 deletion examples/data-sources/biganimal_projects/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
}
}
2 changes: 1 addition & 1 deletion examples/data-sources/biganimal_region/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
}
}
2 changes: 1 addition & 1 deletion examples/resources/biganimal_aws_connection/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/biganimal_azure_connection/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/biganimal_cluster/ha/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.8.1"
version = "0.9.0"
}
random = {
source = "hashicorp/random"
Expand Down
Loading

0 comments on commit 36675c4

Please sign in to comment.