Files
softwarefactory/terraform/main.tf
2025-08-25 16:27:22 +02:00

16 lines
241 B
HCL

terraform {
required_providers {
podman = {
source = "containers/podman"
version = "0.0.1"
}
}
}
provider "podman" {
uri = "unix:///run/podman/podman.sock"
}
module "syslog" {
source = "./modules/syslog"
}