infra/stacks/plotting-book/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

111 lines
2.6 KiB
HCL

variable "tls_secret_name" {
type = string
sensitive = true
}
variable "plotting_book_session_secret" {
type = string
sensitive = true
}
resource "kubernetes_namespace" "plotting-book" {
metadata {
name = "plotting-book"
labels = {
"istio-injection" : "disabled"
tier = local.tiers.aux
}
}
}
module "tls_secret" {
source = "../../modules/kubernetes/setup_tls_secret"
namespace = kubernetes_namespace.plotting-book.metadata[0].name
tls_secret_name = var.tls_secret_name
}
resource "kubernetes_deployment" "plotting-book" {
metadata {
name = "plotting-book"
namespace = kubernetes_namespace.plotting-book.metadata[0].name
labels = {
app = "plotting-book"
tier = local.tiers.aux
}
}
lifecycle {
ignore_changes = [
spec[0].template[0].spec[0].container[0].image,
]
}
spec {
replicas = 1
selector {
match_labels = {
app = "plotting-book"
}
}
template {
metadata {
labels = {
app = "plotting-book"
}
}
spec {
container {
image = "ancamilea/book-plotter:latest"
# image = "viktorbarzin/book-plotter:7"
name = "plotting-book"
image_pull_policy = "Always"
env {
name = "SESSION_SECRET"
value = var.plotting_book_session_secret
}
port {
container_port = 3001
}
resources {
requests = {
memory = "32Mi"
cpu = "10m"
}
limits = {
memory = "256Mi"
cpu = "100m"
}
}
}
}
}
}
}
resource "kubernetes_service" "plotting-book" {
metadata {
name = "plotting-book"
namespace = kubernetes_namespace.plotting-book.metadata[0].name
labels = {
"app" = "plotting-book"
}
}
spec {
selector = {
app = "plotting-book"
}
port {
name = "http"
port = 80
target_port = 3001
}
}
}
module "ingress" {
source = "../../modules/kubernetes/ingress_factory"
namespace = kubernetes_namespace.plotting-book.metadata[0].name
name = "plotting-book"
tls_secret_name = var.tls_secret_name
custom_content_security_policy = "default-src 'self' blob: data:; img-src 'self' data: blob:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval' blob:; worker-src 'self' blob:; connect-src 'self' blob:; frame-ancestors 'self' *.viktorbarzin.me viktorbarzin.me"
}