mirror of
https://github.com/apricote/home-cloud.git
synced 2026-01-13 13:01:03 +00:00
19 lines
390 B
Terraform
19 lines
390 B
Terraform
|
|
## Minecraft
|
||
|
|
|
||
|
|
resource "hcloud_server" "minecraft" {
|
||
|
|
name = "minecraft"
|
||
|
|
image = "ubuntu-20.04"
|
||
|
|
server_type = "cx21"
|
||
|
|
location = "nbg1"
|
||
|
|
}
|
||
|
|
|
||
|
|
resource "hcloud_volume" "minecraft_data" {
|
||
|
|
name = "minecraft-data"
|
||
|
|
size = 20
|
||
|
|
}
|
||
|
|
|
||
|
|
resource "hcloud_volume_attachment" "minecraft_data" {
|
||
|
|
volume_id = hcloud_volume.minecraft_data.id
|
||
|
|
server_id = hcloud_server.minecraft.id
|
||
|
|
}
|