forked from SUSE/ha-sap-terraform-deployments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
95 lines (70 loc) · 1.52 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Outputs:
# - Private IP
# - Public IP
# - Private node name
# - Public node name
# iSCSI server
output "iscsisrv_ip" {
value = module.iscsi_server.iscsisrv_ip
}
output "iscsisrv_public_ip" {
value = module.iscsi_server.iscsisrv_public_ip
}
output "iscsisrv_name" {
value = module.iscsi_server.iscsisrv_name
}
output "iscsisrv_public_name" {
value = []
}
# Cluster nodes
output "hana_ip" {
value = module.hana_node.hana_ip
}
output "hana_public_ip" {
value = module.hana_node.hana_public_ip
}
output "hana_name" {
value = module.hana_node.hana_name
}
output "hana_public_name" {
value = []
}
# Monitoring
output "monitoring_ip" {
value = module.monitoring.monitoring_ip
}
output "monitoring_public_ip" {
value = module.monitoring.monitoring_public_ip
}
output "monitoring_name" {
value = module.monitoring.monitoring_name
}
output "monitoring_public_name" {
value = module.monitoring.monitoring_public_name
}
# drbd
output "drbd_ip" {
value = module.drbd_node.drbd_ip
}
output "drbd_public_ip" {
value = module.drbd_node.drbd_public_ip
}
output "drbd_name" {
value = module.drbd_node.drbd_name
}
output "drbd_public_name" {
value = module.drbd_node.drbd_public_name
}
# netweaver
output "netweaver_ip" {
value = module.netweaver_node.netweaver_ip
}
output "netweaver_public_ip" {
value = module.netweaver_node.netweaver_public_ip
}
output "netweaver_name" {
value = module.netweaver_node.netweaver_name
}
output "netweaver_public_name" {
value = module.netweaver_node.netweaver_public_name
}