Move cloud instances to Falkenstein

This commit is contained in:
Paul-Henri Froidmont 2023-02-07 23:11:14 +01:00
parent 0404ff186d
commit 4b0dee3a16
Signed by: phfroidmont
GPG key ID: BE948AFD7E7873BE

View file

@ -30,7 +30,7 @@ resource "hcloud_server" "db1" {
hcloud_ssh_key.froidmpa-desktop.id
]
keep_disk = true
location = "hel1"
location = "fsn1"
network {
network_id = hcloud_network.private_network.id
@ -47,7 +47,8 @@ resource "hcloud_server" "db1" {
lifecycle {
ignore_changes = [
ssh_keys
ssh_keys,
image
]
}
@ -61,7 +62,7 @@ resource "hcloud_server" "backend1" {
hcloud_ssh_key.froidmpa-desktop.id
]
keep_disk = true
location = "hel1"
location = "fsn1"
network {
network_id = hcloud_network.private_network.id
@ -78,7 +79,8 @@ resource "hcloud_server" "backend1" {
lifecycle {
ignore_changes = [
ssh_keys
ssh_keys,
image
]
}
}