Skip to content

Commit

Permalink
fix: comment out the initial filesystem on volumes - causes recreation
Browse files Browse the repository at this point in the history
  • Loading branch information
phandox committed Apr 29, 2023
1 parent 26c6282 commit 9eed5c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infra-modules/volumes/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ resource "digitalocean_volume" "volume" {
name = var.name
region = var.region
size = var.size
initial_filesystem_type = "ext4"
initial_filesystem_label = var.fs_label
# initial_filesystem_type = "ext4"
# initial_filesystem_label = var.fs_label
tags = concat(var.tags, [var.env])
}

Expand Down

0 comments on commit 9eed5c8

Please sign in to comment.