This commit is contained in:
2026-05-05 00:26:41 +02:00
commit 7587c86541
32 changed files with 33914 additions and 0 deletions

11
main.tf Normal file
View File

@@ -0,0 +1,11 @@
data "kustomization_build" "main" {
path = "."
}
resource "kubectl_manifest" "main" {
for_each = data.kustomization_build.main.manifests
yaml_body = each.value
server_side_apply = true
force_conflicts = true
}