-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoutput.tf
50 lines (41 loc) · 1.12 KB
/
output.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
output "access_private_ipv4" {
description = "private ipv4"
value = equinix_metal_device.this.access_private_ipv4
}
output "access_public_ipv4" {
description = "public ipv4"
value = equinix_metal_device.this.access_public_ipv4
}
output "access_public_ipv6" {
description = "public ipv6"
value = equinix_metal_device.this.access_public_ipv6
}
output "created" {
description = "when it was created"
value = equinix_metal_device.this.created
}
output "hostname" {
description = "hostname"
value = equinix_metal_device.this.hostname
}
output "id" {
description = "device id"
value = equinix_metal_device.this.id
}
output "operating_system" {
description = "device os"
value = equinix_metal_device.this.operating_system
}
output "ssh_key_ids" {
description = "device ssh key"
value = equinix_metal_device.this.ssh_key_ids
}
output "root_password" {
description = "device root password"
value = equinix_metal_device.this.root_password
sensitive = true
}
output "state" {
description = "device state"
value = equinix_metal_device.this.state
}