removed useless config

This commit is contained in:
chloe 2025-08-06 22:58:50 +02:00
parent 596282d2fe
commit 2dde3ac5c0
2 changed files with 0 additions and 28 deletions

View file

@ -1,4 +0,0 @@
#cloud-config
runcmd:
- curl https://raw.githubusercontent.com/elitak/nixos-infect/master/nixos-infect | PROVIDER=hetznercloud NIX_CHANNEL=nixos-24.11 bash 2>&1 | tee /tmp/infect.log

View file

@ -1,24 +0,0 @@
variable "hcloud_token" {
sensitive = true
}
provider "hcloud" {
token = var.hcloud_token
project = "homelab"
}
resource "hcloud_server" {
name = "athena"
type = "cx32"
image = "debian-12"
datacenter = "nbg1-dc3"
}
data "cloudinit_config" "athena" {
part {
filename = "cloud-config.yaml"
content_type = "text/cloud-config"
content = file("${path.module}/cloud-config.yaml")
}
}