forked from WorksOnArm/OpenStackWorksOnArm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutput.tf
More file actions
39 lines (31 loc) · 968 Bytes
/
output.tf
File metadata and controls
39 lines (31 loc) · 968 Bytes
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
output "Cloud_ID_Tag" {
value = random_id.cloud.hex
}
output "Controller_Type" {
value = packet_device.controller.plan
}
output "Compute_x86_Type" {
value = packet_device.compute-x86.*.plan
}
output "Compute_ARM_Type" {
value = packet_device.compute-arm.*.plan
}
output "Compute_x86_IPs" {
value = packet_device.compute-x86.*.access_public_ipv4
}
output "Compute_ARM_IPs" {
value = packet_device.compute-arm.*.access_public_ipv4
}
output "Horizon_dashboard_via_IP" {
value = "http://${packet_device.dashboard.access_public_ipv4}/horizon/ admin/ADMIN_PASS"
}
output "Controller_SSH" {
value = "ssh root@${packet_device.controller.access_public_ipv4} -i ${var.cloud_ssh_key_path}"
}
#output "Horizon dashboard via DNS" {
# value = "http://${dnsimple_record.dashboard-dns.hostname}/horizon/ admin/ADMIN_PASS"
#}
#
#output "Controller SSH via DNS" {
# value = "ssh root@${dnsimple_record.controller-dns.hostname} -i ${var.cloud_ssh_key_path}"
#}