[ci skip] Migrate 22 platform service states to stacks/platform

State migration for all platform services from root state to
state/stacks/platform/terraform.tfstate. Key changes:
- module.kubernetes_cluster.module.X["key"] -> module.X
- Removed null_resource.core_services from root state
- Imported traefik helm_release (was missing from state)
- Fixed helm provider syntax (kubernetes = {} not kubernetes {})
- Added secrets symlink for TLS cert file() resolution
- Platform terragrunt plan: 0 add, 24 change (cosmetic drift), 0 destroy
This commit is contained in:
Viktor Barzin 2026-02-22 13:35:10 +00:00
parent d202b72334
commit 65c54eb4d7
No known key found for this signature in database
GPG key ID: 0EB088298288D958
2 changed files with 2 additions and 1 deletions

1
stacks/platform/secrets Symbolic link
View file

@ -0,0 +1 @@
../../secrets

View file

@ -47,7 +47,7 @@ provider "kubernetes" {
}
provider "helm" {
kubernetes {
kubernetes = {
config_path = var.kube_config_path
}
}