From c192fd2bafebadafb1516dd5938de81e748e5842 Mon Sep 17 00:00:00 2001 From: lcaggio Date: Thu, 24 Sep 2020 17:40:51 +0200 Subject: [PATCH] Update outputs.tf fix output --- .../outputs.tf | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/cloud-operations/scheduled-asset-inventory-export-bq/outputs.tf b/cloud-operations/scheduled-asset-inventory-export-bq/outputs.tf index efee4737d..fa07eea03 100644 --- a/cloud-operations/scheduled-asset-inventory-export-bq/outputs.tf +++ b/cloud-operations/scheduled-asset-inventory-export-bq/outputs.tf @@ -14,12 +14,12 @@ * limitations under the License. */ -# output "bq-dataset" { -# description = "Bigquery instance details." -# value = module.bq.dataset -# } +output "bq-dataset" { + description = "Bigquery instance details." + value = module.bq.dataset +} -# output "cloud-function" { -# description = "Cloud Function instance details." -# value = module.cf.function -# } +output "cloud-function" { + description = "Cloud Function instance details." + value = module.cf.function +}