30 lines
719 B
HCL
30 lines
719 B
HCL
/* Hetzner AX41-NVMe
|
|
* AMD Ryzen 5 3600 Hexa-Core
|
|
* 64 GB DDR4 RAM
|
|
* 2 x 512 GB NVMe SSD */
|
|
module "nimbus_nodes_pyrmont_hetzner" {
|
|
source = "./modules/dummy-module"
|
|
|
|
name = "metal"
|
|
env = "nimbus"
|
|
stage = "pyrmont"
|
|
group = "nimbus-pyrmont-metal"
|
|
region = "eu-hel1"
|
|
prefix = "he"
|
|
domain = var.domain
|
|
|
|
ips = [
|
|
"65.21.196.45", # metal-01.he-eu-hel1.nimbus.pyrmont
|
|
"65.21.196.46", # metal-02.he-eu-hel1.nimbus.pyrmont
|
|
]
|
|
}
|
|
|
|
/* Community test REST API endpoints. */
|
|
resource "cloudflare_record" "unstable_pyrmont_beacon_api" {
|
|
zone_id = local.zones["nimbus.team"]
|
|
name = "insecura"
|
|
value = module.nimbus_nodes_pyrmont_hetzner.public_ips[0]
|
|
type = "A"
|
|
proxied = false
|
|
}
|