Skip to content

Commit

Permalink
replace cx11 with cx22 machines
Browse files Browse the repository at this point in the history
  • Loading branch information
amitsagtani97 committed Nov 5, 2024
1 parent 17b3732 commit 569b081
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions terraform/examples/create-infrastructure.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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`)
Expand All @@ -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`)
Expand All @@ -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`)
Expand All @@ -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`)
Expand Down
8 changes: 4 additions & 4 deletions terraform/examples/wire-server-deploy-offline-hetzner/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down Expand Up @@ -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
}

Expand All @@ -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
}

Expand All @@ -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
}

Expand Down

0 comments on commit 569b081

Please sign in to comment.