feat: shutdown minecraft server

This commit is contained in:
Julian Tölle 2022-11-12 13:50:35 +01:00
parent 7569ad0b80
commit bf506d9816

View file

@ -1,22 +1,3 @@
## 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
}
## Terraria
resource "hcloud_server" "terraria" {