-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathoutputs.tf
50 lines (42 loc) · 1.45 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
output "kube_config" {
value = module.core.aks_kube_config_raw
description = "kubeconfig for kubectl access."
sensitive = true
}
output "postgres_admin_username" {
value = var.postgres_username
description = "PostgreSQL administrator password."
sensitive = true
}
output "postgres_admin_password" {
value = random_password.postgres.result
description = "PostgreSQL administrator password."
sensitive = true
}
output "remark42_admin_password" {
value = module.kubernetes.remark42_admin_password
description = "Terraform-generated Remark42 administrator password."
sensitive = true
}
output "backup_truenas_account_name" {
value = module.core.backup_truenas_account_name
description = "TrueNAS cloud credential account name."
sensitive = true
}
output "backup_truenas_account_key" {
value = module.core.backup_truenas_account_key
description = "TrueNAS cloud credential account key."
sensitive = true
}
output "schnerring_net_dns_servers" {
value = module.core.schnerring_net_dns_servers
description = "Cloudflare-assigned schnerring.net DNS servers."
}
output "schnerring_app_dns_servers" {
value = module.core.schnerring_app_dns_servers
description = "Cloudflare-assigned schnerring.app DNS servers."
}
output "sensingskies_org_dns_servers" {
value = module.core.sensingskies_org_dns_servers
description = "Cloudflare-assigned sensingskies.org DNS servers."
}