Best practice clean up to add more descriptions and stricter type cases on variables.

This commit is contained in:
2026-08-09 19:36:59 -05:00
parent a9b20fa9ae
commit 66d4f2b775
26 changed files with 55 additions and 38 deletions
@@ -1,5 +1,5 @@
resource "digitalocean_volume_attachment" "this" {
count = var.use_volume > 0 ? 1 : 0
count = var.use_volume ? 1 : 0
droplet_id = digitalocean_droplet.this.id
volume_id = digitalocean_volume.this[0].id
}