diff --git a/.wordlist-en-custom.txt b/.wordlist-en-custom.txt index f8e223f1..b098eb08 100644 --- a/.wordlist-en-custom.txt +++ b/.wordlist-en-custom.txt @@ -37,6 +37,8 @@ pgextended pgBouncer pgvector postgres +PostGIS +postGIS ssd terraform ultradisk diff --git a/CHANGELOG.md b/CHANGELOG.md index e8eea131..4b3c1670 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v0.10.0 (May 13. 2024) +Features: +* PostGIS support for `biganimal_cluster` resources +* PostGIS and Pgvector support for `biganimal_faraway_replica` resources + ## v0.9.0 (March 27. 2024) Features: * Added support to pause and resume a cluster for `biganimal_pgd` and `biganimal_cluster` resources diff --git a/GNUmakefile b/GNUmakefile index 8663301b..4b02b3ea 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -4,7 +4,7 @@ HOSTNAME=registry.terraform.io NAMESPACE=EnterpriseDB NAME=biganimal BINARY=terraform-provider-${NAME} -VERSION=0.9.0 +VERSION=0.10.0 # Figure out the OS and ARCH of the # builder machine diff --git a/README.md b/README.md index a638a0db..b3ad7442 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } } } diff --git a/docs/data-sources/cluster.md b/docs/data-sources/cluster.md index 9142d340..19a9dd4a 100644 --- a/docs/data-sources/cluster.md +++ b/docs/data-sources/cluster.md @@ -110,6 +110,10 @@ output "pgvector" { value = coalesce(data.biganimal_cluster.this.pgvector, false) } +output "post_gis" { + value = coalesce(data.biganimal_cluster.this.post_gis, false) +} + output "faraway_replica_ids" { value = data.biganimal_cluster.this.faraway_replica_ids } @@ -164,6 +168,7 @@ output "service_account_ids" { - `pg_version` (String) Postgres version. - `pgvector` (Boolean) Is pgvector extension enabled. Adds support for vector storage and vector similarity search to Postgres. - `phase` (String) Current phase of the cluster. +- `post_gis` (Boolean) Is postGIS extension enabled. PostGIS extends the capabilities of the PostgreSQL relational database by adding support storing, indexing and querying geographic data. - `private_networking` (Boolean) Is private networking enabled. - `read_only_connections` (Boolean) Is read only connection enabled. - `region` (String) Region to deploy the cluster. diff --git a/docs/data-sources/faraway_replica.md b/docs/data-sources/faraway_replica.md index ccef1b61..316630d4 100644 --- a/docs/data-sources/faraway_replica.md +++ b/docs/data-sources/faraway_replica.md @@ -146,7 +146,9 @@ output "storage" { - `pg_config` (Set of Object) Database configuration parameters. (see [below for nested schema](#nestedatt--pg_config)) - `pg_type` (String) Postgres type. - `pg_version` (String) Postgres version. +- `pgvector` (Boolean) Is pgvector extension enabled. Adds support for vector storage and vector similarity search to Postgres. - `phase` (String) Current phase of the cluster. +- `post_gis` (Boolean) Is postGIS extension enabled. PostGIS extends the capabilities of the PostgreSQL relational database by adding support storing, indexing and querying geographic data. - `private_networking` (Boolean) Is private networking enabled. - `region` (String) Region to deploy the cluster. - `resizing_pvc` (List of String) Resizing PVC. diff --git a/docs/data-sources/pgd.md b/docs/data-sources/pgd.md index 54ea4263..c9168987 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 = "0.9.0" + version = "0.10.0" } } } diff --git a/docs/resources/aws_connection.md b/docs/resources/aws_connection.md index be3f7a47..cc33fcb9 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 = "0.9.0" + version = "0.10.0" } } } diff --git a/docs/resources/azure_connection.md b/docs/resources/azure_connection.md index 465af5f9..b8664ac7 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 = "0.9.0" + version = "0.10.0" } } } diff --git a/docs/resources/cluster.md b/docs/resources/cluster.md index 9c657e4a..483cee6b 100644 --- a/docs/resources/cluster.md +++ b/docs/resources/cluster.md @@ -13,7 +13,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" @@ -92,6 +92,7 @@ resource "biganimal_cluster" "single_node_cluster" { region = "eastus2" superuser_access = true pgvector = false + post_gis = false pg_bouncer = { is_enabled = false @@ -126,7 +127,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" @@ -204,6 +205,7 @@ resource "biganimal_cluster" "ha_cluster" { region = "us-east-1" superuser_access = true pgvector = false + post_gis = false pg_bouncer = { is_enabled = false @@ -266,6 +268,7 @@ output "faraway_replica_ids" { - `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)) - `pgvector` (Boolean) Is pgvector extension enabled. Adds support for vector storage and vector similarity search to Postgres. +- `post_gis` (Boolean) Is postGIS extension enabled. PostGIS extends the capabilities of the PostgreSQL relational database by adding support storing, indexing and querying geographic data. - `private_networking` (Boolean) Is private networking enabled. - `read_only_connections` (Boolean) Is read only connection enabled. - `service_account_ids` (Set of String) A Google Cloud Service Account is used for logs. If you leave this blank, then you will be unable to access log details for this cluster. Required when cluster is deployed on BigAnimal's cloud account. diff --git a/docs/resources/faraway_replica.md b/docs/resources/faraway_replica.md index 452d2d21..41bc427b 100644 --- a/docs/resources/faraway_replica.md +++ b/docs/resources/faraway_replica.md @@ -9,7 +9,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" @@ -102,7 +102,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" @@ -245,7 +245,9 @@ resource "biganimal_faraway_replica" "faraway_replica" { - `id` (String) The ID of this resource. - `logs_url` (String) The URL to find the logs of this cluster. - `metrics_url` (String) The URL to find the metrics of this cluster. +- `pgvector` (Boolean) Is pgvector extension enabled. Adds support for vector storage and vector similarity search to Postgres. - `phase` (String) Current phase of the cluster. +- `post_gis` (Boolean) Is postGIS extension enabled. PostGIS extends the capabilities of the PostgreSQL relational database by adding support storing, indexing and querying geographic data. - `resizing_pvc` (List of String) Resizing PVC. diff --git a/docs/resources/pgd.md b/docs/resources/pgd.md index c84068bc..0b714981 100644 --- a/docs/resources/pgd.md +++ b/docs/resources/pgd.md @@ -10,7 +10,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" @@ -110,7 +110,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" @@ -279,7 +279,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" @@ -382,7 +382,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" @@ -557,7 +557,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" @@ -657,7 +657,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" @@ -826,7 +826,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" @@ -929,7 +929,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" @@ -1104,7 +1104,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" @@ -1204,7 +1204,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" @@ -1373,7 +1373,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" @@ -1480,7 +1480,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" diff --git a/docs/resources/project.md b/docs/resources/project.md index e4076293..48997a81 100644 --- a/docs/resources/project.md +++ b/docs/resources/project.md @@ -20,7 +20,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" diff --git a/docs/resources/region.md b/docs/resources/region.md index 29066609..8fc26fa4 100644 --- a/docs/resources/region.md +++ b/docs/resources/region.md @@ -9,7 +9,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } } } diff --git a/examples/data-sources/biganimal_aws_connection/provider.tf b/examples/data-sources/biganimal_aws_connection/provider.tf index 33c0a320..94e312eb 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 = "0.9.0" + version = "0.10.0" } } } diff --git a/examples/data-sources/biganimal_cluster/provider.tf b/examples/data-sources/biganimal_cluster/provider.tf index 33c0a320..94e312eb 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 = "0.9.0" + version = "0.10.0" } } } diff --git a/examples/data-sources/biganimal_faraway_replica/provider.tf b/examples/data-sources/biganimal_faraway_replica/provider.tf index 33c0a320..94e312eb 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 = "0.9.0" + version = "0.10.0" } } } diff --git a/examples/data-sources/biganimal_pgd/provider.tf b/examples/data-sources/biganimal_pgd/provider.tf index 33c0a320..94e312eb 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 = "0.9.0" + version = "0.10.0" } } } diff --git a/examples/data-sources/biganimal_projects/provider.tf b/examples/data-sources/biganimal_projects/provider.tf index 33c0a320..94e312eb 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 = "0.9.0" + version = "0.10.0" } } } diff --git a/examples/data-sources/biganimal_region/provider.tf b/examples/data-sources/biganimal_region/provider.tf index 33c0a320..94e312eb 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 = "0.9.0" + version = "0.10.0" } } } diff --git a/examples/resources/biganimal_aws_connection/resource.tf b/examples/resources/biganimal_aws_connection/resource.tf index f541d29f..2de693c2 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 = "0.9.0" + version = "0.10.0" } } } diff --git a/examples/resources/biganimal_azure_connection/resource.tf b/examples/resources/biganimal_azure_connection/resource.tf index ebcfa544..17b5e7e6 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 = "0.9.0" + version = "0.10.0" } } } diff --git a/examples/resources/biganimal_cluster/ha/resource.tf b/examples/resources/biganimal_cluster/ha/resource.tf index 7e6a2fd5..680c1432 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 = "0.9.0" + version = "0.10.0" } 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 2e5cfcbf..ac1dcd18 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 = "0.9.0" + version = "0.10.0" } 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 8026d6bd..95545117 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 = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_cluster/single_node/bah_aws/resource.tf b/examples/resources/biganimal_cluster/single_node/bah_aws/resource.tf index 0e48c535..42c39566 100644 --- a/examples/resources/biganimal_cluster/single_node/bah_aws/resource.tf +++ b/examples/resources/biganimal_cluster/single_node/bah_aws/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_cluster/single_node/bah_azure/resource.tf b/examples/resources/biganimal_cluster/single_node/bah_azure/resource.tf index e8c3d66d..808b2935 100644 --- a/examples/resources/biganimal_cluster/single_node/bah_azure/resource.tf +++ b/examples/resources/biganimal_cluster/single_node/bah_azure/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_cluster/single_node/bah_gcp/resource.tf b/examples/resources/biganimal_cluster/single_node/bah_gcp/resource.tf index 960d393a..50e827eb 100644 --- a/examples/resources/biganimal_cluster/single_node/bah_gcp/resource.tf +++ b/examples/resources/biganimal_cluster/single_node/bah_gcp/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } } } diff --git a/examples/resources/biganimal_cluster/single_node/gcp/resource.tf b/examples/resources/biganimal_cluster/single_node/gcp/resource.tf index f0193c4a..ba8c99ae 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 = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_cluster/single_node/resource.tf b/examples/resources/biganimal_cluster/single_node/resource.tf index 8026d6bd..95545117 100644 --- a/examples/resources/biganimal_cluster/single_node/resource.tf +++ b/examples/resources/biganimal_cluster/single_node/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } 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 b6b85e35..46944e94 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 = "0.9.0" + version = "0.10.0" } 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 00a63b9f..a97d305f 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 = "0.9.0" + version = "0.10.0" } 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 281af648..2bab64e8 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 = "0.9.0" + version = "0.10.0" } 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 f1bd8198..56cfb3f8 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 = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_faraway_replica/resource.tf b/examples/resources/biganimal_faraway_replica/resource.tf index b6b85e35..46944e94 100644 --- a/examples/resources/biganimal_faraway_replica/resource.tf +++ b/examples/resources/biganimal_faraway_replica/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_pgd/aws/bah_data_group/resource.tf b/examples/resources/biganimal_pgd/aws/bah_data_group/resource.tf index ddc5f310..80e526ec 100644 --- a/examples/resources/biganimal_pgd/aws/bah_data_group/resource.tf +++ b/examples/resources/biganimal_pgd/aws/bah_data_group/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_pgd/aws/bah_data_groups_with_witness_group/resource.tf b/examples/resources/biganimal_pgd/aws/bah_data_groups_with_witness_group/resource.tf index 84a639c8..d1bf3509 100644 --- a/examples/resources/biganimal_pgd/aws/bah_data_groups_with_witness_group/resource.tf +++ b/examples/resources/biganimal_pgd/aws/bah_data_groups_with_witness_group/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } 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 05787bde..75ae73f5 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 = "0.9.0" + version = "0.10.0" } 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 386665bd..bbbedb0a 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 = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_pgd/azure/bah_data_group/resource.tf b/examples/resources/biganimal_pgd/azure/bah_data_group/resource.tf index 776e8044..2211fc7d 100644 --- a/examples/resources/biganimal_pgd/azure/bah_data_group/resource.tf +++ b/examples/resources/biganimal_pgd/azure/bah_data_group/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_pgd/azure/bah_data_groups_with_witness_group/resource.tf b/examples/resources/biganimal_pgd/azure/bah_data_groups_with_witness_group/resource.tf index 558504fc..8a4a745a 100644 --- a/examples/resources/biganimal_pgd/azure/bah_data_groups_with_witness_group/resource.tf +++ b/examples/resources/biganimal_pgd/azure/bah_data_groups_with_witness_group/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } 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 ba15ca9f..9bedfbd0 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 = "0.9.0" + version = "0.10.0" } 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 8fa055d9..728a397e 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 = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_pgd/gcp/bah_data_group/resource.tf b/examples/resources/biganimal_pgd/gcp/bah_data_group/resource.tf index 4a8beffd..1eec96d1 100644 --- a/examples/resources/biganimal_pgd/gcp/bah_data_group/resource.tf +++ b/examples/resources/biganimal_pgd/gcp/bah_data_group/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_pgd/gcp/bah_data_groups_with_witness_group/resource.tf b/examples/resources/biganimal_pgd/gcp/bah_data_groups_with_witness_group/resource.tf index 85568e0a..329f3a97 100644 --- a/examples/resources/biganimal_pgd/gcp/bah_data_groups_with_witness_group/resource.tf +++ b/examples/resources/biganimal_pgd/gcp/bah_data_groups_with_witness_group/resource.tf @@ -2,7 +2,7 @@ terraform { required_providers { biganimal = { source = "EnterpriseDB/biganimal" - version = "0.9.0" + version = "0.10.0" } 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 275b1ec3..c21170db 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 = "0.9.0" + version = "0.10.0" } 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 12e1fcc7..f00831c2 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 = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_project/resource.tf b/examples/resources/biganimal_project/resource.tf index 4e893059..eec7dc29 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 = "0.9.0" + version = "0.10.0" } random = { source = "hashicorp/random" diff --git a/examples/resources/biganimal_region/resource.tf b/examples/resources/biganimal_region/resource.tf index 8e1095f0..f28211aa 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 = "0.9.0" + version = "0.10.0" } } }