Files
foxhunt/infra/modules/secrets/outputs.tf
jgrusewski 3e75afa160 infra: add OpenTofu modules for all Scaleway resources
- kapsule: cluster + 3 node pools (always-on, ci, gpu)
- object-storage: S3 bucket with 30-day sccache expiry
- registry: private Container Registry namespace
- secrets: JWT + DB password via Secret Manager
- block-storage: 100GB b_ssd for training data

All managed via Terragrunt with shared provider/backend.
Gitignore exception added for infra/*/secrets/ (TF code, not actual secrets).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-24 14:23:03 +01:00

22 lines
544 B
HCL

output "jwt_secret_id" {
description = "ID of the JWT secret"
value = scaleway_secret.jwt.id
}
output "db_password_secret_id" {
description = "ID of the database password secret"
value = scaleway_secret.db_password.id
}
output "jwt_secret_value" {
description = "Generated JWT secret value"
value = random_password.jwt_secret.result
sensitive = true
}
output "db_password_value" {
description = "Generated database password value"
value = random_password.db_password.result
sensitive = true
}