mirror of
https://github.com/RWejlgaard/pez-infra.git
synced 2026-05-06 04:14:43 +00:00
* Grafana Cloud migration, adding dashboards, fleet, alloy and synthetics * modulize stuff now that we have multiple substantial things in here * provider updates and new secrets * remove grafana and prometheus from ansible
40 lines
694 B
HCL
40 lines
694 B
HCL
resource "hcloud_server" "nuremberg-a" {
|
|
name = "nuremberg-a"
|
|
image = "debian-13"
|
|
server_type = "cx23"
|
|
|
|
location = "nbg1"
|
|
delete_protection = true
|
|
rebuild_protection = true
|
|
keep_disk = true
|
|
|
|
labels = {
|
|
"role" = "mail"
|
|
}
|
|
|
|
public_net {
|
|
ipv4_enabled = true
|
|
ipv6_enabled = true
|
|
}
|
|
}
|
|
|
|
resource "hcloud_server" "helsinki-a" {
|
|
name = "helsinki-a"
|
|
image = "debian-13"
|
|
server_type = "cax11"
|
|
|
|
location = "hel1"
|
|
delete_protection = true
|
|
rebuild_protection = true
|
|
keep_disk = true
|
|
|
|
labels = {
|
|
"role" = "ingress"
|
|
}
|
|
|
|
public_net {
|
|
ipv4_enabled = true
|
|
ipv6_enabled = true
|
|
}
|
|
}
|
|
|