-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathoutputs.tf
53 lines (43 loc) · 1.1 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
# hush-house database outputs
output "hush-house-database-ip" {
value = "${module.database.ip}"
}
output "hush-house-database-ca-cert" {
sensitive = true
value = "${module.database.ca-cert}"
}
output "hush-house-database-password" {
sensitive = true
value = "${module.database.password}"
}
output "hush-house-database-cert" {
sensitive = true
value = "${module.database.cert}"
}
output "hush-house-database-private-key" {
sensitive = true
value = "${module.database.private-key}"
}
# vault database outputs
output "vault-database-ip" {
value = "${module.vault-database.ip}"
}
output "vault-database-ca-cert" {
sensitive = true
value = "${module.vault-database.ca-cert}"
}
output "vault-database-password" {
sensitive = true
value = "${module.vault-database.password}"
}
output "vault-database-cert" {
sensitive = true
value = "${module.vault-database.cert}"
}
output "vault-database-private-key" {
sensitive = true
value = "${module.vault-database.private-key}"
}
output "hush-house-address" {
value = "${google_compute_address.hush-house.address}"
}