Initial commit

This commit is contained in:
2026-05-18 13:01:32 -05:00
commit ad6af49bde
6 changed files with 62 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
terraform {
required_providers {
hcloud = {
source = "hetznercloud/hcloud"
version = "~> 1.50"
}
}
}
provider "hcloud" {
token = var.hcloud_token
}
resource "hcloud_server" "main" {
name = "learningunix"
server_type = "cx23"
image = "debian-13"
location = var.location
ssh_keys = [var.ssh_key_name]
}