mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 13:46:59 +01:00
23 lines
595 B
HCL
23 lines
595 B
HCL
locals {
|
|
environment = terraform.workspace != "" ? terraform.workspace : "test"
|
|
}
|
|
|
|
terraform {
|
|
backend "s3" {
|
|
bucket = "banditlair-k8s-tfstate"
|
|
key = "banditlair.tfstate"
|
|
region = "nl-ams"
|
|
endpoint = "https://s3.nl-ams.scw.cloud"
|
|
profile = "default"
|
|
skip_credentials_validation = true
|
|
skip_region_validation = true
|
|
}
|
|
}
|
|
|
|
provider "hcloud" {
|
|
}
|
|
|
|
resource "hcloud_ssh_key" "desktop" {
|
|
name = "Desktop"
|
|
public_key = "${file("ssh_keys/desktop.pub")}"
|
|
}
|