-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
30 lines (25 loc) · 906 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
output "cluster_name" {
description = "The name of the Wayfinder AKS cluster"
value = module.wayfinder.cluster_name
}
output "wayfinder_api_url" {
description = "The URL for the Wayfinder API"
value = module.wayfinder.wayfinder_api_url
}
output "wayfinder_ui_url" {
description = "The URL for the Wayfinder UI"
value = module.wayfinder.wayfinder_ui_url
}
output "wayfinder_instance_id" {
description = "The unique identifier for the Wayfinder instance"
value = module.wayfinder.wayfinder_instance_id
}
output "wayfinder_admin_username" {
description = "The username for the Wayfinder local admin user"
value = module.wayfinder.wayfinder_admin_username
}
output "wayfinder_admin_password" {
description = "The password for the Wayfinder local admin user"
value = nonsensitive(module.wayfinder.wayfinder_admin_password)
# sensitive = true
}