- 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>
10 lines
282 B
HCL
10 lines
282 B
HCL
output "bucket_name" {
|
|
description = "Name of the created object storage bucket"
|
|
value = scaleway_object_bucket.artifacts.name
|
|
}
|
|
|
|
output "endpoint" {
|
|
description = "S3-compatible endpoint URL for the bucket region"
|
|
value = "https://s3.${var.region}.scw.cloud"
|
|
}
|