-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.tf
34 lines (28 loc) · 832 Bytes
/
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
output "id" {
description = "The ID of the Droplet"
value = "${digitalocean_droplet.this.id}"
}
output "urn" {
description = "The uniform resource name of the Droplet"
value = "${digitalocean_droplet.this.urn}"
}
output "name" {
description = "The name of the Droplet"
value = "${digitalocean_droplet.this.name}"
}
output "region" {
description = "The region of the Droplet"
value = "${digitalocean_droplet.this.region}"
}
output "image" {
description = "The image of the Droplet"
value = "${digitalocean_droplet.this.image}"
}
output "ipv4_address" {
description = "The IPv4 Address of the Droplet"
value = "${digitalocean_droplet.this.ipv4_address}"
}
output "status" {
description = "The status of the Droplet"
value = "${digitalocean_droplet.this.status}"
}