generated from adnoctem/boilerplate-terraform-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
44 lines (36 loc) · 1.3 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
output "volume_id" {
value = hcloud_volume.current.id
description = "The ID of the new cloud volume."
}
output "volume_name" {
value = hcloud_volume.current.name
description = "The name for the new cloud volume."
}
output "volume_size" {
value = hcloud_volume.current.size
description = "An integer representing the size of the new cloud volume in GB."
}
output "volume_location" {
value = hcloud_volume.current.location
description = "The Hetzner datacenter location of the new cloud volume."
}
output "volume_labels" {
value = hcloud_volume.current.labels
description = "The labels attached to the new cloud volume."
}
output "volume_linux_device" {
value = hcloud_volume.current.linux_device
description = "The device path on the file system for the new cloud volume."
}
output "volume_delete_protection" {
value = hcloud_volume.current.delete_protection
description = "Whether or not delete protection is enabled for the new cloud volume."
}
output "volume_attachment_id" {
value = hcloud_volume_attachment.current.id
description = "The ID for the new volume attachment."
}
output "volume_attachment_server_id" {
value = hcloud_volume_attachment.current.server_id
description = "The server ID for the new volume attachment."
}