-
Notifications
You must be signed in to change notification settings - Fork 1
/
outputs.tf
62 lines (46 loc) · 1.25 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
/*
Copyright (c) 2023 Dell, Inc or its subsidiaries.
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
output "control_ip_address" {
value = module.onefsbase.control_ip_address
}
output "external_ip_addresses" {
value = module.onefsbase.external_ip_addresses
}
output "root_password" {
value = module.onefsbase.root_password
sensitive = true
}
output "internal_ip_addresses" {
value = module.onefsbase.internal_ip_addresses
}
output "mgmt_ip_addresses" {
value = module.onefsbase.mgmt_ip_addresses
}
output "instance_id" {
value = module.onefsbase.instance_id
}
output "additional_nodes" {
value = module.onefsbase.additional_nodes
}
output "internal_network_low_ip" {
value = module.onefsbase.internal_network_low_ip
}
output "internal_network_high_ip" {
value = module.onefsbase.internal_network_high_ip
}
output "node_configs" {
value = module.onefsbase.node_configs
}
output "gateway_hostnum" {
value = module.onefsbase.gateway_hostnum
}
output "region" {
value = module.onefsbase.region
}
output "cluster_id" {
value = module.onefsbase.cluster_id
}