diff --git a/resource.digitalocean_volume.this.tf b/resource.digitalocean_volume.this.tf index 911e91d..ec3a07f 100644 --- a/resource.digitalocean_volume.this.tf +++ b/resource.digitalocean_volume.this.tf @@ -1,7 +1,7 @@ resource "digitalocean_volume" "this" { count = var.use_volume > 0 ? 1 : 0 description = "Data Volume for ${var.host_name}.${var.domain_name}" - name = var.host_name + name = "${var.host_name}.${var.domain_name}" region = var.region size = var.volume_size }