-
Notifications
You must be signed in to change notification settings - Fork 34
/
outputs.tf
72 lines (57 loc) · 2.14 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
output "replicated_console_password" {
value = var.is_replicated_deployment ? module.settings[0].replicated_configuration.DaemonAuthenticationPassword : "This is only for Replicated deployments."
description = "Generated password for Replicated dashboard"
}
output "replicated_console_url" {
value = var.is_replicated_deployment ? "https://${local.hostname}:8800/" : "This is only used for Replicated deployments."
description = "The URL of the Terraform Enterprise administration console."
}
output "lb_address" {
value = local.lb_address
description = "Load Balancer Address"
}
output "health_check_url" {
value = "${local.base_url}_health_check"
description = "The URL of the Terraform Enterprise health check endpoint."
}
output "iact_url" {
value = "${local.base_url}admin/retrieve-iact"
description = "The URL of the Terraform Enterprise initial admin creation token."
}
output "initial_admin_user_url" {
value = "${local.base_url}admin/initial-admin-user"
description = "The URL of the Terraform Enterprise initial admin user."
}
output "url" {
value = local.base_url
description = "The URL of Terraform Enterprise."
}
output "network" {
value = try(module.networking[0].network, null)
description = "The network to which TFE is attached."
}
output "service_account" {
value = module.service_accounts.service_account
description = "The service account associated with the TFE instance."
}
output "subnetwork" {
value = try(module.networking[0].subnetwork, null)
description = "The subnetwork to which TFE is attached."
}
output "dns_configuration_notice" {
value = "If you are using external DNS, please make sure to create a DNS record using the lb_address output that has been provided"
description = "A warning message."
}
output "vm_mig" {
value = module.vm_mig
description = "The managed instance group module."
}
output "object_store_details" {
description = "object store details"
value = {
bucket = local.object_storage.bucket
project = local.object_storage.project
}
}