diff --git a/docs/resources/pgd.md b/docs/resources/pgd.md index 9f8643df..8ee6b31d 100644 --- a/docs/resources/pgd.md +++ b/docs/resources/pgd.md @@ -96,6 +96,11 @@ resource "biganimal_pgd" "pgd_cluster" { }, ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} ``` ## PGD Azure Two Data Groups with One Witness Group Example @@ -259,6 +264,11 @@ resource "biganimal_pgd" "pgd_cluster" { } ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} ``` ## PGD Azure BigAnimal's cloud account One Data Group Example @@ -356,6 +366,11 @@ resource "biganimal_pgd" "pgd_cluster" { }, ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} ``` ## PGD Azure BigAnimal's cloud account Two Data Groups with One Witness Group Example @@ -525,6 +540,11 @@ resource "biganimal_pgd" "pgd_cluster" { } ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} ``` ## PGD AWS One Data Group Example @@ -619,6 +639,11 @@ resource "biganimal_pgd" "pgd_cluster" { } ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} ``` ## PGD AWS Two Data Groups with One Witness Group Example @@ -782,6 +807,11 @@ resource "biganimal_pgd" "pgd_cluster" { } ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} ``` ## PGD AWS BigAnimal's cloud account One Data Group Example @@ -879,6 +909,11 @@ resource "biganimal_pgd" "pgd_cluster" { } ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} ``` ## PGD AWS BigAnimal's cloud account Two Data Groups with One Witness Group Example @@ -1048,6 +1083,11 @@ resource "biganimal_pgd" "pgd_cluster" { } ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} ``` ## PGD GCP One Data Group Example @@ -1142,6 +1182,11 @@ resource "biganimal_pgd" "pgd_cluster" { } ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} ``` ## PGD GCP Two Data Groups with One Witness Group Example @@ -1305,6 +1350,11 @@ resource "biganimal_pgd" "pgd_cluster" { } ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} ``` ## PGD GCP BigAnimal's cloud account One Data Group Example @@ -1406,6 +1456,11 @@ resource "biganimal_pgd" "pgd_cluster" { } ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} ``` ## PGD GCP BigAnimal's cloud account Two Data Groups with One Witness Group Example @@ -1583,6 +1638,11 @@ resource "biganimal_pgd" "pgd_cluster" { } ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} ``` 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 c45e411f..906deb69 100644 --- a/examples/resources/biganimal_pgd/aws/bah_data_group/resource.tf +++ b/examples/resources/biganimal_pgd/aws/bah_data_group/resource.tf @@ -91,3 +91,8 @@ resource "biganimal_pgd" "pgd_cluster" { } ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} 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 d1f32883..caeb2cca 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 @@ -163,3 +163,8 @@ resource "biganimal_pgd" "pgd_cluster" { } ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} diff --git a/examples/resources/biganimal_pgd/aws/data_group/resource.tf b/examples/resources/biganimal_pgd/aws/data_group/resource.tf index 15abd9e8..d4a14764 100644 --- a/examples/resources/biganimal_pgd/aws/data_group/resource.tf +++ b/examples/resources/biganimal_pgd/aws/data_group/resource.tf @@ -88,3 +88,8 @@ resource "biganimal_pgd" "pgd_cluster" { } ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} 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 aee5360c..70e8f649 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 @@ -157,3 +157,8 @@ resource "biganimal_pgd" "pgd_cluster" { } ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} 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 03e724d4..5ba63a5d 100644 --- a/examples/resources/biganimal_pgd/azure/bah_data_group/resource.tf +++ b/examples/resources/biganimal_pgd/azure/bah_data_group/resource.tf @@ -91,3 +91,8 @@ resource "biganimal_pgd" "pgd_cluster" { }, ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} 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 f712c2d8..89897c64 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 @@ -163,3 +163,8 @@ resource "biganimal_pgd" "pgd_cluster" { } ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} diff --git a/examples/resources/biganimal_pgd/azure/data_group/resource.tf b/examples/resources/biganimal_pgd/azure/data_group/resource.tf index c6906f98..d67e51e4 100644 --- a/examples/resources/biganimal_pgd/azure/data_group/resource.tf +++ b/examples/resources/biganimal_pgd/azure/data_group/resource.tf @@ -88,3 +88,8 @@ resource "biganimal_pgd" "pgd_cluster" { }, ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} 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 64bc5e0c..2d8bcb21 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 @@ -157,3 +157,8 @@ resource "biganimal_pgd" "pgd_cluster" { } ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} 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 1d1f8f04..9b8c3e3d 100644 --- a/examples/resources/biganimal_pgd/gcp/bah_data_group/resource.tf +++ b/examples/resources/biganimal_pgd/gcp/bah_data_group/resource.tf @@ -95,3 +95,8 @@ resource "biganimal_pgd" "pgd_cluster" { } ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} 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 1c260c75..4ca6671c 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 @@ -171,3 +171,8 @@ resource "biganimal_pgd" "pgd_cluster" { } ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} diff --git a/examples/resources/biganimal_pgd/gcp/data_group/resource.tf b/examples/resources/biganimal_pgd/gcp/data_group/resource.tf index c5ddcb99..3756e1c7 100644 --- a/examples/resources/biganimal_pgd/gcp/data_group/resource.tf +++ b/examples/resources/biganimal_pgd/gcp/data_group/resource.tf @@ -88,3 +88,8 @@ resource "biganimal_pgd" "pgd_cluster" { } ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +} 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 54a77d75..8f956df4 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 @@ -157,3 +157,8 @@ resource "biganimal_pgd" "pgd_cluster" { } ] } + +output "password" { + sensitive = true + value = resource.biganimal_pgd.pgd_cluster.password +}