Skip to content
This repository was archived by the owner on Jul 17, 2024. It is now read-only.

Commit 884cb8b

Browse files
authored
Ensure all modules have an id output (GoogleCloudPlatform#1410)
* net-vpc * a-d * complete modules * fix error
1 parent f069562 commit 884cb8b

File tree

91 files changed

+362
-189
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+362
-189
lines changed

blueprints/data-solutions/data-platform-foundations/06-common.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ module "common-datacatalog" {
6464
tags = var.data_catalog_tags
6565
}
6666

67-
# To create KMS keys in the common projet: uncomment this section and assigne key links accondingly in local.service_encryption_keys variable
67+
# To create KMS keys in the common project: uncomment this section and assigne key links accondingly in local.service_encryption_keys variable
6868

6969
# module "cmn-kms-0" {
7070
# source = "../../../modules/kms"

modules/artifact-registry/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module "docker_artifact_registry" {
3737

3838
| name | description | sensitive |
3939
|---|---|:---:|
40-
| [id](outputs.tf#L17) | Repository id. | |
40+
| [id](outputs.tf#L17) | Fully qualified repository id. | |
4141
| [name](outputs.tf#L22) | Repository name. | |
4242

4343
<!-- END TFDOC -->

modules/artifact-registry/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
output "id" {
18-
description = "Repository id."
18+
description = "Fully qualified repository id."
1919
value = google_artifact_registry_repository.registry.id
2020
}
2121

modules/bigtable-instance/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ module "bigtable-instance" {
245245

246246
| name | description | sensitive |
247247
|---|---|:---:|
248-
| [id](outputs.tf#L17) | An identifier for the resource with format projects/{{project}}/instances/{{name}}. | |
248+
| [id](outputs.tf#L17) | Fully qualified instance id. | |
249249
| [instance](outputs.tf#L26) | BigTable intance. | |
250250
| [table_ids](outputs.tf#L35) | Map of fully qualified table ids keyed by table name. | |
251251
| [tables](outputs.tf#L40) | Table resources. | |

modules/bigtable-instance/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
output "id" {
18-
description = "An identifier for the resource with format projects/{{project}}/instances/{{name}}."
18+
description = "Fully qualified instance id."
1919
value = google_bigtable_instance.default.id
2020
depends_on = [
2121
google_bigtable_instance_iam_binding.default,

modules/billing-budget/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@ module "pubsub" {
8484
| name | description | sensitive |
8585
|---|---|:---:|
8686
| [budget](outputs.tf#L17) | Budget resource. | |
87-
| [id](outputs.tf#L22) | Budget ID. | |
87+
| [id](outputs.tf#L22) | Fully qualified budget id. | |
8888

8989
<!-- END TFDOC -->

modules/billing-budget/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ output "budget" {
2020
}
2121

2222
output "id" {
23-
description = "Budget ID."
23+
description = "Fully qualified budget id."
2424
value = google_billing_budget.budget.id
2525
}

modules/binauthz/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ module "binauthz" {
7373
| name | description | sensitive |
7474
|---|---|:---:|
7575
| [attestors](outputs.tf#L17) | Attestors. | |
76-
| [id](outputs.tf#L25) | Binary Authorization policy ID. | |
76+
| [id](outputs.tf#L25) | Fully qualified Binary Authorization policy ID. | |
7777
| [notes](outputs.tf#L30) | Notes. | |
7878

7979
<!-- END TFDOC -->

modules/binauthz/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ output "attestors" {
2323
}
2424

2525
output "id" {
26-
description = "Binary Authorization policy ID."
26+
description = "Fully qualified Binary Authorization policy ID."
2727
value = google_binary_authorization_policy.policy.id
2828
}
2929

modules/cloud-dataplex/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ module "dataplex" {
6868
| name | description | sensitive |
6969
|---|---|:---:|
7070
| [assets](outputs.tf#L17) | Assets attached to the lake of Dataplex Lake. | |
71-
| [lake](outputs.tf#L22) | The lake name of Dataplex Lake. | |
72-
| [zones](outputs.tf#L27) | The zone name of Dataplex Lake. | |
71+
| [id](outputs.tf#L22) | Fully qualified Dataplex Lake id. | |
72+
| [lake](outputs.tf#L27) | The lake name of Dataplex Lake. | |
73+
| [zones](outputs.tf#L32) | The zone name of Dataplex Lake. | |
7374

7475
<!-- END TFDOC -->

0 commit comments

Comments
 (0)