zivildienst/infrastructure/modules/storage/volumes.tf

7 lines
227 B
HCL

resource "hcloud_volume" "data1" {
name = "data1-${data.terraform_remote_state.environment.outputs.environment_name}"
size = 10
format = "ext4"
location = data.terraform_remote_state.environment.outputs.dc_default_id
}