This commit is contained in:
Alex
2025-08-25 16:27:22 +02:00
parent ed1bf6f558
commit 902bc98598
8 changed files with 38 additions and 19 deletions

16
terraform/main.tf Normal file
View File

@@ -0,0 +1,16 @@
terraform {
required_providers {
podman = {
source = "containers/podman"
version = "0.0.1"
}
}
}
provider "podman" {
uri = "unix:///run/podman/podman.sock"
}
module "syslog" {
source = "./modules/syslog"
}