a6d1a1e4a7
Signed-off-by: Jason Rothstein <fdragon@fdragon.org>
7 lines
186 B
Terraform
7 lines
186 B
Terraform
resource "digitalocean_volume_attachment" "this" {
|
|
count = var.use_volume > 0 ? 1 : 0
|
|
droplet_id = digitalocean_droplet.this.id
|
|
volume_id = digitalocean_volume.this[0].id
|
|
}
|
|
|