Files
ouranos/terraform/versions.tf
Robert Helewka 2f5a15eef5 chore(haproxy,terraform): harden haproxy stats and pin incus provider
- Add maxconn limit and HTTP timeouts to mitigate slowloris attacks
- Restrict stats endpoint to internal LAN and localhost only
- Hide HAProxy version on stats page
- Pin Incus Terraform provider to ~> 1.0 for stability
2026-06-09 22:52:23 -04:00

15 lines
235 B
HCL

terraform {
required_version = ">= 1.0"
required_providers {
incus = {
source = "lxc/incus"
version = "~> 1.0"
}
}
}
provider "incus" {
# Configuration will be read from environment or default socket
}