diff --git a/terraform/examples/create-infrastructure.tf b/terraform/examples/create-infrastructure.tf index 6d6d70058..9f68ceecf 100644 --- a/terraform/examples/create-infrastructure.tf +++ b/terraform/examples/create-infrastructure.tf @@ -42,7 +42,7 @@ resource "hcloud_server" "redis" { count = 0 name = "redis${count.index}" image = "ubuntu-22.04" - server_type = "cx11" + server_type = "cx22" ssh_keys = ["hetznerssh-key"] # Nuremberg (for choices see `hcloud datacenter list`) @@ -53,7 +53,7 @@ resource "hcloud_server" "restund" { count = 2 name = "restund${count.index}" image = "ubuntu-22.04" - server_type = "cx11" + server_type = "cx22" ssh_keys = ["hetznerssh-key"] # Nuremberg (for choices see `hcloud datacenter list`) @@ -64,7 +64,7 @@ resource "hcloud_server" "minio" { count = 3 name = "minio${count.index}" image = "ubuntu-22.04" - server_type = "cx11" + server_type = "cx22" ssh_keys = ["hetznerssh-key"] # Nuremberg (for choices see `hcloud datacenter list`) @@ -86,7 +86,7 @@ resource "hcloud_server" "elasticsearch" { count = 3 name = "elasticsearch${count.index}" image = "ubuntu-22.04" - server_type = "cx11" + server_type = "cx22" ssh_keys = ["hetznerssh-key"] # Nuremberg (for choices see `hcloud datacenter list`) diff --git a/terraform/examples/wire-server-deploy-offline-hetzner/main.tf b/terraform/examples/wire-server-deploy-offline-hetzner/main.tf index 30553a8ff..1c0ce8a85 100644 --- a/terraform/examples/wire-server-deploy-offline-hetzner/main.tf +++ b/terraform/examples/wire-server-deploy-offline-hetzner/main.tf @@ -118,7 +118,7 @@ resource "hcloud_server" "restund" { name = "restund-${random_pet.restund[count.index].id}" image = "ubuntu-22.04" ssh_keys = local.ssh_keys - server_type = "cx11" + server_type = "cx22" user_data = local.disable_network_cfg } @@ -160,7 +160,7 @@ resource "hcloud_server" "cassandra" { name = "cassandra-${random_pet.cassandra[count.index].id}" image = "ubuntu-22.04" ssh_keys = local.ssh_keys - server_type = "cx11" + server_type = "cx22" user_data = local.disable_network_cfg } @@ -181,7 +181,7 @@ resource "hcloud_server" "elasticsearch" { name = "elasticsearch-${random_pet.elasticsearch[count.index].id}" image = "ubuntu-22.04" ssh_keys = local.ssh_keys - server_type = "cx11" + server_type = "cx22" user_data = local.disable_network_cfg } @@ -202,7 +202,7 @@ resource "hcloud_server" "minio" { name = "minio-${random_pet.minio[count.index].id}" image = "ubuntu-22.04" ssh_keys = local.ssh_keys - server_type = "cx11" + server_type = "cx22" user_data = local.disable_network_cfg }