Skip to content

Commit 028bd56

Browse files
committed
doc: outputs
1 parent c320926 commit 028bd56

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ No modules.
6868

6969
| Name | Description |
7070
|------|-------------|
71-
| <a name="output_access_blob"></a> [access\_blob](#output\_access\_blob) | n/a |
72-
| <a name="output_project_id"></a> [project\_id](#output\_project\_id) | n/a |
73-
| <a name="output_table_locations"></a> [table\_locations](#output\_table\_locations) | n/a |
74-
| <a name="output_wif_audience"></a> [wif\_audience](#output\_wif\_audience) | n/a |
75-
| <a name="output_wif_impersonation_url"></a> [wif\_impersonation\_url](#output\_wif\_impersonation\_url) | n/a |
71+
| <a name="output_access_blob"></a> [access\_blob](#output\_access\_blob) | All other outputs crammed into a single copy/pasteable value. |
72+
| <a name="output_project_id"></a> [project\_id](#output\_project\_id) | The project the created resources exist in. |
73+
| <a name="output_table_locations"></a> [table\_locations](#output\_table\_locations) | The data location for every table made accessible. |
74+
| <a name="output_wif_audience"></a> [wif\_audience](#output\_wif\_audience) | The audience value required for impersonation interactions. |
75+
| <a name="output_wif_impersonation_url"></a> [wif\_impersonation\_url](#output\_wif\_impersonation\_url) | The URL used for impersonation interactions. |
7676
<!-- END_TF_DOCS -->

output.tf

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,23 @@ locals {
55
}
66

77
output "project_id" {
8-
value = local.project_id
8+
value = local.project_id
9+
description = "The project the created resources exist in."
910
}
1011

1112
output "table_locations" {
12-
value = local.table_locations
13+
value = local.table_locations
14+
description = "The data location for every table made accessible."
1315
}
1416

1517
output "wif_audience" {
16-
value = local.wif_audience
18+
value = local.wif_audience
19+
description = "The audience value required for impersonation interactions."
1720
}
1821

1922
output "wif_impersonation_url" {
20-
value = local.wif_impersonation_url
23+
value = local.wif_impersonation_url
24+
description = "The URL used for impersonation interactions."
2125
}
2226

2327
output "access_blob" {
@@ -28,4 +32,5 @@ output "access_blob" {
2832
wifImpersonationURL = local.wif_impersonation_url,
2933
roundtripDigest = var.roundtrip_digest,
3034
}))
35+
description = "All other outputs crammed into a single copy/pasteable value."
3136
}

0 commit comments

Comments
 (0)