Skip to content

Commit

Permalink
ci: Prepare for the 0.5.0 release. (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
serdardalgic authored Jul 24, 2023
1 parent 2107a23 commit 5601ba4
Show file tree
Hide file tree
Showing 33 changed files with 52 additions and 41 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## v0.5.0 (July 24. 2023)
Features:
* New Data Source: `biganimal_pgd`
* New Resource to manage BigAnimal Extreme High Availability clusters: `biganimal_pgd`
* Projects, Regions and PGD resources can now be imported.

Enhancements:
* Dependency updates.
* `biganimal_project` and `biganimal_region` resources and `biganimal_projects` and `biganimal_region` data sources are migrated to use the new Terraform Plugin Framework Library.
* Various CI improvements

## v0.4.2 (June 6. 2023)
Bug Fixes:
* Regression fix for Faraway Replicas
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.4.2
VERSION=0.5.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.4.2"
version = "0.5.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.4.2"
version = "0.5.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.4.2"
version = "0.5.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.4.2"
version = "0.5.0"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions docs/resources/cluster.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.4.2"
version = "0.5.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -98,7 +98,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.4.2"
version = "0.5.0"
}
random = {
source = "hashicorp/random"
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.4.2"
version = "0.5.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -102,7 +102,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.4.2"
version = "0.5.0"
}
random = {
source = "hashicorp/random"
Expand Down
12 changes: 6 additions & 6 deletions docs/resources/pgd.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.4.2"
version = "0.5.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -106,7 +106,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.4.2"
version = "0.5.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -261,7 +261,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.4.2"
version = "0.5.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -337,11 +337,11 @@ resource "biganimal_pgd" "pgd_cluster" {
cloud_provider_id = "aws"
}
region = {
region_id = "eu-west-1"
region_id = "eu-central-1"
}
maintenance_window = {
is_enabled = true
start_day = 1
start_day = 6
start_time = "13:00"
}
}
Expand All @@ -355,7 +355,7 @@ terraform {
required_providers {
biganimal = {
source = "EnterpriseDB/biganimal"
version = "0.4.2"
version = "0.5.0"
}
random = {
source = "hashicorp/random"
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.4.2"
version = "0.5.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.4.2"
version = "0.5.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.4.2"
version = "0.5.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.4.2"
version = "0.5.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.4.2"
version = "0.5.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.4.2"
version = "0.5.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.4.2"
version = "0.5.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.4.2"
version = "0.5.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.4.2"
version = "0.5.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.4.2"
version = "0.5.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.4.2"
version = "0.5.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.4.2"
version = "0.5.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.4.2"
version = "0.5.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.4.2"
version = "0.5.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.4.2"
version = "0.5.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.4.2"
version = "0.5.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.4.2"
version = "0.5.0"
}
random = {
source = "hashicorp/random"
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/biganimal_faraway_replica/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.4.2"
version = "0.5.0"
}
random = {
source = "hashicorp/random"
Expand Down
6 changes: 3 additions & 3 deletions examples/resources/biganimal_pgd/aws/data_group/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.4.2"
version = "0.5.0"
}
random = {
source = "hashicorp/random"
Expand Down Expand Up @@ -78,11 +78,11 @@ resource "biganimal_pgd" "pgd_cluster" {
cloud_provider_id = "aws"
}
region = {
region_id = "eu-west-1"
region_id = "eu-central-1"
}
maintenance_window = {
is_enabled = true
start_day = 1
start_day = 6
start_time = "13:00"
}
}
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.4.2"
version = "0.5.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.4.2"
version = "0.5.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.4.2"
version = "0.5.0"
}
random = {
source = "hashicorp/random"
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/biganimal_project/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.4.2"
version = "0.5.0"
}
random = {
source = "hashicorp/random"
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/biganimal_region/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.4.2"
version = "0.5.0"
}
}
}
Expand Down

0 comments on commit 5601ba4

Please sign in to comment.