-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoutputs.tf
31 lines (26 loc) · 878 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
output "instance_ip" {
value = module.tamr_vm.tamr_instance_internal_ip
description = "An arbitrary value that changes each time the resource is replaced."
}
output "tamr_instance_self_link" {
value = module.tamr_vm.tamr_instance_self_link
description = "full self link of created tamr vm"
}
output "tamr_service_account" {
value = module.iam.service_account_email
description = "service account tamr is using"
}
# config files
# NOTE: these are very useful for debugging
output "tamr_config_file" {
value = module.config.tamr_config_file
description = "full tamr config file"
}
output "tmpl_dataproc_config" {
value = module.config.tmpl_dataproc_config
description = "dataproc config"
}
output "tmpl_startup_script" {
value = module.tamr_vm.tmpl_startup_script
description = "rendered metadata startup script"
}