Skip to content

Commit

Permalink
try cpx series resources for hetzner machines
Browse files Browse the repository at this point in the history
  • Loading branch information
amitsagtani97 committed Nov 7, 2024
1 parent 569b081 commit 0b3f428
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terraform/examples/wire-server-deploy-offline-hetzner/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ resource "hcloud_server" "adminhost" {
name = "adminhost-${random_pet.adminhost.id}"
image = "ubuntu-22.04"
ssh_keys = local.ssh_keys
server_type = "cx42"
server_type = "cpx41"
user_data = <<-EOF
#cloud-config
apt:
Expand Down Expand Up @@ -98,7 +98,7 @@ resource "hcloud_server" "assethost" {
name = "assethost-${random_pet.assethost.id}"
image = "ubuntu-22.04"
ssh_keys = local.ssh_keys
server_type = "cx42"
server_type = "cpx41"
user_data = local.disable_network_cfg
}

Expand Down Expand Up @@ -139,7 +139,7 @@ resource "hcloud_server" "kubenode" {
name = "kubenode-${random_pet.kubenode[count.index].id}"
image = "ubuntu-22.04"
ssh_keys = local.ssh_keys
server_type = "cx42"
server_type = "cpx41"
user_data = local.disable_network_cfg
}

Expand Down

0 comments on commit 0b3f428

Please sign in to comment.