-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutput.tf
More file actions
55 lines (43 loc) · 1.09 KB
/
output.tf
File metadata and controls
55 lines (43 loc) · 1.09 KB
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
# #################################################
# # Output Bastion Node
# #################################################
#
output "bastion_public_ip" {
value = "${module.infrastructure.bastion_public_ip}"
}
output "bastion_hostname" {
value = "${module.infrastructure.bastion_hostname}"
}
output "master_private_ip" {
value = "${module.infrastructure.master_private_ip}"
}
output "master_hostname" {
value = "${module.infrastructure.master_hostname}"
}
output "infra_private_ip" {
value = "${module.infrastructure.infra_private_ip}"
}
output "infra_hostname" {
value = "${module.infrastructure.infra_hostname}"
}
output "worker_private_ip" {
value = "${module.infrastructure.worker_private_ip}"
}
output "worker_hostname" {
value = "${module.infrastructure.worker_hostname}"
}
output "storage_private_ip" {
value = "${module.infrastructure.storage_private_ip}"
}
output "storage_hostname" {
value = "${module.infrastructure.storage_hostname}"
}
output "console" {
value = "${var.master_cname}"
}
output "username" {
value = "admin"
}
output "password" {
value = "admin"
}