self-hosting/terraform/config.tf

21 lines
593 B
Terraform
Raw Normal View History

2023-02-07 23:25:29 +01:00
terraform {
backend "http" {
address = "https://gitlab.com/api/v4/projects/22845244/terraform/state/prod"
lock_address = "https://gitlab.com/api/v4/projects/22845244/terraform/state/prod/lock"
lock_method = "POST"
unlock_address = "https://gitlab.com/api/v4/projects/22845244/terraform/state/prod/lock"
unlock_method = "DELETE"
username = "phfroidmont"
}
required_providers {
2026-03-24 13:18:01 +01:00
hcloud = {
source = "hetznercloud/hcloud"
version = "~> 1.60"
2026-03-24 13:18:01 +01:00
}
null = {
source = "hashicorp/null"
version = "~> 3.2"
}
2023-02-07 23:25:29 +01:00
}
}