diff --git a/resource.digitalocean_volume.this.tf b/resource.digitalocean_volume.this.tf index 74e3be9..f95f045 100644 --- a/resource.digitalocean_volume.this.tf +++ b/resource.digitalocean_volume.this.tf @@ -2,7 +2,7 @@ resource "digitalocean_volume" "this" { count = var.volume_size > 1 ? 1 : 0 description = "Data Volume for ${var.host_name}.${var.domain_name}" initial_filesystem_type = "ext4" - name = "${var.host_name}.${var.domain_name}" + name = var.host_name region = var.region size = var.volume_size }