-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoutputs.tf
28 lines (24 loc) · 887 Bytes
/
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
/*
* Copyright (c) 2020 Qumulo, Inc. All rights reserved.
*
* NOTICE: All information and intellectual property contained herein is the
* confidential property of Qumulo, Inc. Reproduction or dissemination of the
* information or intellectual property contained herein is strictly forbidden,
* unless separate prior written permission has been obtained from Qumulo, Inc.
*/
output "instance_ids" {
value = local.all_nodes.*.id
description = "EC2 Instance IDs for all nodes in the cluster"
}
output "private_ips" {
value = local.all_nodes.*.private_ip
description = "EC2 instance private IPs"
}
output "public_ips" {
value = local.all_nodes.*.public_ip
description = "EC2 instance public IPs (if set)"
}
output "temp_admin_password" {
value = aws_instance.leader_node.id
description = "Temporary admin password for the Web UI and API"
}