infra/stacks/tor-proxy/main.tf
Viktor Barzin db68067925
[ci skip] phase 5+6: update CI pipelines for SOPS, add sensitive=true to secret vars
Phase 5 — CI pipelines:
- default.yml: add SOPS decrypt in prepare step, change git add . to
  specific paths (stacks/ state/ .woodpecker/), cleanup on success+failure
- renew-tls.yml: change git add . to git add secrets/ state/

Phase 6 — sensitive=true:
- Add sensitive = true to 256 variable declarations across 149 stack files
- Prevents secret values from appearing in terraform plan output
- Does NOT modify shared modules (ingress_factory, nfs_volume) to avoid
  breaking module interface contracts

Note: CI pipeline SOPS decryption requires sops_age_key Woodpecker secret
to be created before the pipeline will work with SOPS. Until then, the old
terraform.tfvars path continues to function.
2026-03-07 14:30:36 +00:00

128 lines
2.5 KiB
HCL

variable "tls_secret_name" {
type = string
sensitive = true
}
resource "kubernetes_namespace" "tor-proxy" {
metadata {
name = "tor-proxy"
labels = {
"istio-injection" : "disabled"
tier = local.tiers.aux
}
}
}
module "tls_secret" {
source = "../../modules/kubernetes/setup_tls_secret"
namespace = "tor-proxy"
tls_secret_name = var.tls_secret_name
}
# resource "kubernetes_config_map" "tor_config" {
# metadata {
# name = "tor-config"
# namespace = "tor-proxy"
# annotations = {
# "reloader.stakater.com/match" = "true"
# }
# }
# data = {
# "torrc" = file("${path.module}/.torrc")
# }
# }
resource "kubernetes_deployment" "tor-proxy" {
metadata {
name = "tor-proxy"
namespace = "tor-proxy"
labels = {
app = "tor-proxy"
tier = local.tiers.aux
}
annotations = {
"reloader.stakater.com/search" = "true"
}
}
spec {
replicas = 1
strategy {
type = "RollingUpdate"
}
selector {
match_labels = {
app = "tor-proxy"
}
}
template {
metadata {
labels = {
app = "tor-proxy"
}
}
spec {
container {
name = "tor-proxy"
image = "dperson/torproxy:latest"
port {
name = "http"
container_port = 8118
protocol = "TCP"
}
port {
name = "tor"
container_port = 9050
protocol = "TCP"
}
resources {
requests = {
cpu = "10m"
memory = "64Mi"
}
limits = {
cpu = "150m"
memory = "256Mi"
}
}
# volume_mount {
# name = "tor-config"
# mount_path = "/etc/tor/torrc"
# sub_path = "torrc"
# }
}
# volume {
# name = "tor-config"
# config_map {
# name = kubernetes_config_map.tor_config.metadata[0].name
# }
# }
}
}
}
}
resource "kubernetes_service" "tor-proxy" {
metadata {
name = "tor-proxy"
namespace = "tor-proxy"
labels = {
"app" = "tor-proxy"
}
}
spec {
selector = {
app = "tor-proxy"
}
port {
name = "http"
port = 8118
}
port {
name = "tor"
port = 9050
}
}
}