From c609e0f78b395a71d9bfe462465b0f7495d12d48 Mon Sep 17 00:00:00 2001 From: wai-wong-edb <119956756+wai-wong-edb@users.noreply.github.com> Date: Tue, 29 Oct 2024 13:11:12 +0000 Subject: [PATCH] ci: Prepare for the 1.1.1 release (#602) --- CHANGELOG.md | 6 ++++++ GNUmakefile | 2 +- README.md | 2 +- docs/data-sources/csp_tag.md | 2 +- docs/data-sources/pgd.md | 2 +- docs/data-sources/projects.md | 12 ++++++++++++ docs/data-sources/region.md | 7 +++---- docs/data-sources/tag.md | 2 +- docs/resources/aws_connection.md | 2 +- docs/resources/azure_connection.md | 2 +- docs/resources/cluster.md | 4 ++-- docs/resources/csp_tag.md | 2 +- docs/resources/faraway_replica.md | 2 +- docs/resources/pgd.md | 12 ++++++------ docs/resources/project.md | 2 +- docs/resources/region.md | 2 +- docs/resources/tag.md | 2 +- .../biganimal_analytics_cluster/provider.tf | 2 +- .../biganimal_aws_connection/provider.tf | 2 +- examples/data-sources/biganimal_cluster/provider.tf | 2 +- .../data-sources/biganimal_csp_tag/data-source.tf | 2 +- .../biganimal_faraway_replica/provider.tf | 2 +- examples/data-sources/biganimal_pgd/provider.tf | 2 +- examples/data-sources/biganimal_projects/provider.tf | 2 +- examples/data-sources/biganimal_region/provider.tf | 2 +- examples/data-sources/biganimal_tag/data-source.tf | 2 +- .../biganimal_analytics_cluster/aws/resource.tf | 2 +- .../resources/biganimal_aws_connection/resource.tf | 2 +- .../resources/biganimal_azure_connection/resource.tf | 2 +- examples/resources/biganimal_cluster/ha/resource.tf | 2 +- .../biganimal_cluster/single_node/aws/resource.tf | 2 +- .../biganimal_cluster/single_node/azure/resource.tf | 2 +- .../biganimal_cluster/single_node/gcp/resource.tf | 2 +- examples/resources/biganimal_csp_tag/resource.tf | 2 +- .../biganimal_faraway_replica/aws/resource.tf | 2 +- .../biganimal_faraway_replica/azure/resource.tf | 2 +- .../cluster_and_faraway_replica/resource.tf | 2 +- .../biganimal_faraway_replica/gcp/resource.tf | 2 +- .../biganimal_pgd/aws/data_group/resource.tf | 2 +- .../aws/data_groups_with_witness_group/resource.tf | 2 +- .../biganimal_pgd/azure/data_group/resource.tf | 2 +- .../azure/data_groups_with_witness_group/resource.tf | 2 +- .../biganimal_pgd/gcp/data_group/resource.tf | 2 +- .../gcp/data_groups_with_witness_group/resource.tf | 2 +- examples/resources/biganimal_project/resource.tf | 2 +- examples/resources/biganimal_region/resource.tf | 2 +- examples/resources/biganimal_tag/resource.tf | 2 +- 47 files changed, 71 insertions(+), 54 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39fb6553..5c81e454 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v1.1.1 (October 29. 2024) +Bug Fixes: +* Fixed Data Source `biganimal_cluster` cloud_provider not working with your cloud account +* Fixed Data Source `biganimal_projects` conversion error +* Fixed Data Source `biganimal_region` conversion error + ## v1.1.0 (October 21. 2024) Features: * New Resource and Data Source to manage tags: `biganimal_tag` diff --git a/GNUmakefile b/GNUmakefile index e34ecf32..068cfb45 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -4,7 +4,7 @@ HOSTNAME=registry.terraform.io NAMESPACE=EnterpriseDB NAME=biganimal BINARY=terraform-provider-${NAME} -VERSION=1.1.0 +VERSION=1.1.1 # Figure out the OS and ARCH of the # builder machine diff --git a/README.md b/README.md index f9e04663..e0dfc386 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } } } diff --git a/docs/data-sources/csp_tag.md b/docs/data-sources/csp_tag.md index b6ea34ac..2307f56a 100644 --- a/docs/data-sources/csp_tag.md +++ b/docs/data-sources/csp_tag.md @@ -17,7 +17,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } } } diff --git a/docs/data-sources/pgd.md b/docs/data-sources/pgd.md index 9125dfac..25cc0c04 100644 --- a/docs/data-sources/pgd.md +++ b/docs/data-sources/pgd.md @@ -74,7 +74,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } } } diff --git a/docs/data-sources/projects.md b/docs/data-sources/projects.md index 68191549..aee893fa 100644 --- a/docs/data-sources/projects.md +++ b/docs/data-sources/projects.md @@ -54,10 +54,12 @@ Required: Optional: - `cloud_providers` (Attributes Set) Enabled Cloud Providers. (see [below for nested schema](#nestedatt--projects--cloud_providers)) +- `tags` (Attributes Set) Show existing tags associated with this resource (see [below for nested schema](#nestedatt--projects--tags)) Read-Only: - `cluster_count` (Number) User Count of the project. +- `id` (String) Resource ID of the project. - `project_id` (String) Project ID of the project. - `user_count` (Number) User Count of the project. @@ -68,3 +70,13 @@ Read-Only: - `cloud_provider_id` (String) Cloud Provider ID. - `cloud_provider_name` (String) Cloud Provider Name. + + + +### Nested Schema for `projects.tags` + +Read-Only: + +- `color` (String) +- `tag_id` (String) +- `tag_name` (String) diff --git a/docs/data-sources/region.md b/docs/data-sources/region.md index a9e40d9b..4735f6b2 100644 --- a/docs/data-sources/region.md +++ b/docs/data-sources/region.md @@ -52,7 +52,6 @@ output "cloud_provider_id" { - `id` (String) Datasource ID. - `regions` (Attributes List) Region information. (see [below for nested schema](#nestedatt--regions)) -- `tags` (Attributes Set) show tags associated with this resource (see [below for nested schema](#nestedatt--tags)) ### Nested Schema for `regions` @@ -63,10 +62,10 @@ Read-Only: - `name` (String) Region name of the region. - `region_id` (String) Region ID of the region. - `status` (String) Region status of the region. +- `tags` (Attributes Set) show tags associated with this resource (see [below for nested schema](#nestedatt--regions--tags)) - - -### Nested Schema for `tags` + +### Nested Schema for `regions.tags` Read-Only: diff --git a/docs/data-sources/tag.md b/docs/data-sources/tag.md index c9b3e3e1..ed895e11 100644 --- a/docs/data-sources/tag.md +++ b/docs/data-sources/tag.md @@ -17,7 +17,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } } } diff --git a/docs/resources/aws_connection.md b/docs/resources/aws_connection.md index 56d4cc79..50159060 100644 --- a/docs/resources/aws_connection.md +++ b/docs/resources/aws_connection.md @@ -19,7 +19,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } } } diff --git a/docs/resources/azure_connection.md b/docs/resources/azure_connection.md index 466104d4..9cf884e7 100644 --- a/docs/resources/azure_connection.md +++ b/docs/resources/azure_connection.md @@ -19,7 +19,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } } } diff --git a/docs/resources/cluster.md b/docs/resources/cluster.md index 17d5ed7e..f32250a0 100644 --- a/docs/resources/cluster.md +++ b/docs/resources/cluster.md @@ -13,7 +13,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" @@ -148,7 +148,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/docs/resources/csp_tag.md b/docs/resources/csp_tag.md index c919ee83..cb926306 100644 --- a/docs/resources/csp_tag.md +++ b/docs/resources/csp_tag.md @@ -17,7 +17,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/docs/resources/faraway_replica.md b/docs/resources/faraway_replica.md index fb7685e1..abcbe094 100644 --- a/docs/resources/faraway_replica.md +++ b/docs/resources/faraway_replica.md @@ -14,7 +14,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/docs/resources/pgd.md b/docs/resources/pgd.md index c2041e7c..f5923933 100644 --- a/docs/resources/pgd.md +++ b/docs/resources/pgd.md @@ -10,7 +10,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" @@ -124,7 +124,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" @@ -308,7 +308,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" @@ -422,7 +422,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" @@ -606,7 +606,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" @@ -724,7 +724,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/docs/resources/project.md b/docs/resources/project.md index 9d0248d3..b8ba2558 100644 --- a/docs/resources/project.md +++ b/docs/resources/project.md @@ -20,7 +20,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/docs/resources/region.md b/docs/resources/region.md index 9cf561c3..ca478bf6 100644 --- a/docs/resources/region.md +++ b/docs/resources/region.md @@ -9,7 +9,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } } } diff --git a/docs/resources/tag.md b/docs/resources/tag.md index 12469757..20bdd1f3 100644 --- a/docs/resources/tag.md +++ b/docs/resources/tag.md @@ -17,7 +17,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/examples/data-sources/biganimal_analytics_cluster/provider.tf b/examples/data-sources/biganimal_analytics_cluster/provider.tf index 34104ddb..37241a1a 100644 --- a/examples/data-sources/biganimal_analytics_cluster/provider.tf +++ b/examples/data-sources/biganimal_analytics_cluster/provider.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } } } diff --git a/examples/data-sources/biganimal_aws_connection/provider.tf b/examples/data-sources/biganimal_aws_connection/provider.tf index 34104ddb..37241a1a 100644 --- a/examples/data-sources/biganimal_aws_connection/provider.tf +++ b/examples/data-sources/biganimal_aws_connection/provider.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } } } diff --git a/examples/data-sources/biganimal_cluster/provider.tf b/examples/data-sources/biganimal_cluster/provider.tf index 34104ddb..37241a1a 100644 --- a/examples/data-sources/biganimal_cluster/provider.tf +++ b/examples/data-sources/biganimal_cluster/provider.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } } } diff --git a/examples/data-sources/biganimal_csp_tag/data-source.tf b/examples/data-sources/biganimal_csp_tag/data-source.tf index 346e9250..ed571c0e 100644 --- a/examples/data-sources/biganimal_csp_tag/data-source.tf +++ b/examples/data-sources/biganimal_csp_tag/data-source.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } } } diff --git a/examples/data-sources/biganimal_faraway_replica/provider.tf b/examples/data-sources/biganimal_faraway_replica/provider.tf index 34104ddb..37241a1a 100644 --- a/examples/data-sources/biganimal_faraway_replica/provider.tf +++ b/examples/data-sources/biganimal_faraway_replica/provider.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } } } diff --git a/examples/data-sources/biganimal_pgd/provider.tf b/examples/data-sources/biganimal_pgd/provider.tf index 34104ddb..37241a1a 100644 --- a/examples/data-sources/biganimal_pgd/provider.tf +++ b/examples/data-sources/biganimal_pgd/provider.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } } } diff --git a/examples/data-sources/biganimal_projects/provider.tf b/examples/data-sources/biganimal_projects/provider.tf index 34104ddb..37241a1a 100644 --- a/examples/data-sources/biganimal_projects/provider.tf +++ b/examples/data-sources/biganimal_projects/provider.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } } } diff --git a/examples/data-sources/biganimal_region/provider.tf b/examples/data-sources/biganimal_region/provider.tf index 34104ddb..37241a1a 100644 --- a/examples/data-sources/biganimal_region/provider.tf +++ b/examples/data-sources/biganimal_region/provider.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } } } diff --git a/examples/data-sources/biganimal_tag/data-source.tf b/examples/data-sources/biganimal_tag/data-source.tf index d07fd4c4..f3b5b844 100644 --- a/examples/data-sources/biganimal_tag/data-source.tf +++ b/examples/data-sources/biganimal_tag/data-source.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } } } diff --git a/examples/resources/biganimal_analytics_cluster/aws/resource.tf b/examples/resources/biganimal_analytics_cluster/aws/resource.tf index fb6c9018..db730995 100644 --- a/examples/resources/biganimal_analytics_cluster/aws/resource.tf +++ b/examples/resources/biganimal_analytics_cluster/aws/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_aws_connection/resource.tf b/examples/resources/biganimal_aws_connection/resource.tf index 36282472..f2429e80 100644 --- a/examples/resources/biganimal_aws_connection/resource.tf +++ b/examples/resources/biganimal_aws_connection/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } } } diff --git a/examples/resources/biganimal_azure_connection/resource.tf b/examples/resources/biganimal_azure_connection/resource.tf index 3febdc8b..5c067407 100644 --- a/examples/resources/biganimal_azure_connection/resource.tf +++ b/examples/resources/biganimal_azure_connection/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } } } diff --git a/examples/resources/biganimal_cluster/ha/resource.tf b/examples/resources/biganimal_cluster/ha/resource.tf index 92f08571..45600681 100644 --- a/examples/resources/biganimal_cluster/ha/resource.tf +++ b/examples/resources/biganimal_cluster/ha/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_cluster/single_node/aws/resource.tf b/examples/resources/biganimal_cluster/single_node/aws/resource.tf index aa101c79..5ca4f7e5 100644 --- a/examples/resources/biganimal_cluster/single_node/aws/resource.tf +++ b/examples/resources/biganimal_cluster/single_node/aws/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_cluster/single_node/azure/resource.tf b/examples/resources/biganimal_cluster/single_node/azure/resource.tf index 52c754f0..fc6d4abe 100644 --- a/examples/resources/biganimal_cluster/single_node/azure/resource.tf +++ b/examples/resources/biganimal_cluster/single_node/azure/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_cluster/single_node/gcp/resource.tf b/examples/resources/biganimal_cluster/single_node/gcp/resource.tf index 7e8a812e..e6ad7932 100644 --- a/examples/resources/biganimal_cluster/single_node/gcp/resource.tf +++ b/examples/resources/biganimal_cluster/single_node/gcp/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_csp_tag/resource.tf b/examples/resources/biganimal_csp_tag/resource.tf index 39a435ee..260254ec 100644 --- a/examples/resources/biganimal_csp_tag/resource.tf +++ b/examples/resources/biganimal_csp_tag/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_faraway_replica/aws/resource.tf b/examples/resources/biganimal_faraway_replica/aws/resource.tf index 6934c881..e9826b08 100644 --- a/examples/resources/biganimal_faraway_replica/aws/resource.tf +++ b/examples/resources/biganimal_faraway_replica/aws/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_faraway_replica/azure/resource.tf b/examples/resources/biganimal_faraway_replica/azure/resource.tf index 8c4e0138..7b1c98a4 100644 --- a/examples/resources/biganimal_faraway_replica/azure/resource.tf +++ b/examples/resources/biganimal_faraway_replica/azure/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_faraway_replica/cluster_and_faraway_replica/resource.tf b/examples/resources/biganimal_faraway_replica/cluster_and_faraway_replica/resource.tf index adf73895..3b4df3bf 100644 --- a/examples/resources/biganimal_faraway_replica/cluster_and_faraway_replica/resource.tf +++ b/examples/resources/biganimal_faraway_replica/cluster_and_faraway_replica/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_faraway_replica/gcp/resource.tf b/examples/resources/biganimal_faraway_replica/gcp/resource.tf index d2595cb6..e9994cfd 100644 --- a/examples/resources/biganimal_faraway_replica/gcp/resource.tf +++ b/examples/resources/biganimal_faraway_replica/gcp/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_pgd/aws/data_group/resource.tf b/examples/resources/biganimal_pgd/aws/data_group/resource.tf index 1497811d..4a672731 100644 --- a/examples/resources/biganimal_pgd/aws/data_group/resource.tf +++ b/examples/resources/biganimal_pgd/aws/data_group/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_pgd/aws/data_groups_with_witness_group/resource.tf b/examples/resources/biganimal_pgd/aws/data_groups_with_witness_group/resource.tf index 2be3f525..8bae42df 100644 --- a/examples/resources/biganimal_pgd/aws/data_groups_with_witness_group/resource.tf +++ b/examples/resources/biganimal_pgd/aws/data_groups_with_witness_group/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_pgd/azure/data_group/resource.tf b/examples/resources/biganimal_pgd/azure/data_group/resource.tf index 4f567722..2cecef13 100644 --- a/examples/resources/biganimal_pgd/azure/data_group/resource.tf +++ b/examples/resources/biganimal_pgd/azure/data_group/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_pgd/azure/data_groups_with_witness_group/resource.tf b/examples/resources/biganimal_pgd/azure/data_groups_with_witness_group/resource.tf index e9316984..cb181ec1 100644 --- a/examples/resources/biganimal_pgd/azure/data_groups_with_witness_group/resource.tf +++ b/examples/resources/biganimal_pgd/azure/data_groups_with_witness_group/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_pgd/gcp/data_group/resource.tf b/examples/resources/biganimal_pgd/gcp/data_group/resource.tf index 929dec1b..64281147 100644 --- a/examples/resources/biganimal_pgd/gcp/data_group/resource.tf +++ b/examples/resources/biganimal_pgd/gcp/data_group/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_pgd/gcp/data_groups_with_witness_group/resource.tf b/examples/resources/biganimal_pgd/gcp/data_groups_with_witness_group/resource.tf index 76968d34..cd2bf536 100644 --- a/examples/resources/biganimal_pgd/gcp/data_groups_with_witness_group/resource.tf +++ b/examples/resources/biganimal_pgd/gcp/data_groups_with_witness_group/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_project/resource.tf b/examples/resources/biganimal_project/resource.tf index 89c7071a..761b0e54 100644 --- a/examples/resources/biganimal_project/resource.tf +++ b/examples/resources/biganimal_project/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_region/resource.tf b/examples/resources/biganimal_region/resource.tf index ef40d712..18c616e3 100644 --- a/examples/resources/biganimal_region/resource.tf +++ b/examples/resources/biganimal_region/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } } } diff --git a/examples/resources/biganimal_tag/resource.tf b/examples/resources/biganimal_tag/resource.tf index 389d7357..af2f52cc 100644 --- a/examples/resources/biganimal_tag/resource.tf +++ b/examples/resources/biganimal_tag/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "1.1.0" + version = "1.1.1" } random = { source = "hashicorp/random"