zivildienst/infrastructure/modules/storage/volumes.tf
2021-01-19 09:10:28 +01:00

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
}