File tree Expand file tree Collapse file tree 2 files changed +14
-9
lines changed
Expand file tree Collapse file tree 2 files changed +14
-9
lines changed Original file line number Diff line number Diff 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 -->
Original file line number Diff line number Diff line change @@ -5,19 +5,23 @@ locals {
55}
66
77output "project_id" {
8- value = local. project_id
8+ value = local. project_id
9+ description = " The project the created resources exist in."
910}
1011
1112output "table_locations" {
12- value = local. table_locations
13+ value = local. table_locations
14+ description = " The data location for every table made accessible."
1315}
1416
1517output "wif_audience" {
16- value = local. wif_audience
18+ value = local. wif_audience
19+ description = " The audience value required for impersonation interactions."
1720}
1821
1922output "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
2327output "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}
You can’t perform that action at this time.
0 commit comments