-
Notifications
You must be signed in to change notification settings - Fork 396
Expand file tree
/
Copy pathoutputs.tf
More file actions
111 lines (91 loc) · 3.27 KB
/
outputs.tf
File metadata and controls
111 lines (91 loc) · 3.27 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# Postgres Monitor Outputs
output "postgres_monitor_name" {
description = "Name of the postgres monitor EC2 instance"
value = var.postgres_monitor_instance_name
}
output "postgres_monitor_hostname" {
description = "Private DNS name of the postgres monitor EC2 instance"
value = module.postgres_monitor.instance_hostname
}
output "postgres_monitor_public_ip" {
description = "Public IP address of the postgres monitor EC2 instance"
value = module.postgres_monitor.public_ip
}
# Postgres Primary Outputs
output "postgres_primary_server_name" {
description = "Name of the postgres primary bare metal server"
value = var.postgres_primary_server_name
}
output "postgres_primary_server_id" {
description = "ID of the postgres primary bare metal server"
value = module.postgres_primary.server_id
}
output "postgres_primary_server_ip" {
description = "IP address of the postgres primary bare metal server"
value = module.postgres_primary.server_ip
}
# Postgres Secondary Outputs
output "postgres_secondary_server_name" {
description = "Name of the postgres secondary bare metal server"
value = var.postgres_secondary_server_name
}
output "postgres_secondary_server_id" {
description = "ID of the postgres secondary bare metal server"
value = module.postgres_secondary.server_id
}
output "postgres_secondary_server_ip" {
description = "IP address of the postgres secondary bare metal server"
value = module.postgres_secondary.server_ip
}
# Gateway Primary Outputs
output "gateway_primary_server_name" {
description = "Name of the gateway primary bare metal server"
value = var.gateway_primary_server_name
}
output "gateway_primary_server_id" {
description = "ID of the gateway primary bare metal server"
value = module.gateway_primary.server_id
}
output "gateway_primary_server_ip" {
description = "IP address of the gateway primary bare metal server"
value = module.gateway_primary.server_ip
}
# Gateway Secondary Outputs
output "gateway_secondary_server_name" {
description = "Name of the gateway secondary bare metal server"
value = var.gateway_secondary_server_name
}
output "gateway_secondary_server_id" {
description = "ID of the gateway secondary bare metal server"
value = module.gateway_secondary.server_id
}
output "gateway_secondary_server_ip" {
description = "IP address of the gateway secondary bare metal server"
value = module.gateway_secondary.server_ip
}
# Metrics Server Outputs
output "metrics_server_name" {
description = "Name of the metrics bare metal server"
value = var.metrics_server_name
}
output "metrics_server_id" {
description = "ID of the metrics bare metal server"
value = module.metrics.server_id
}
output "metrics_server_ip" {
description = "IP address of the metrics bare metal server"
value = module.metrics.server_ip
}
# Sender Server Outputs
output "sender_server_name" {
description = "Name of the sender bare metal server"
value = var.sender_server_name
}
output "sender_server_id" {
description = "ID of the sender bare metal server"
value = module.sender.server_id
}
output "sender_server_ip" {
description = "IP address of the sender bare metal server"
value = module.sender.server_ip
}