terraform-contour-mirror/modules/yc-s3/variables.tf
kochetkov.s cd68e73e40 feat: Add Terraform infrastructure for pulse project
- Add modules: yc-s3, yc-postgresql, k8s-namespace, k8s-secrets
- Add live configuration for stage environment
- Add GitLab CI with downstream pipelines
- Implement best practices from theory.md
2026-01-19 15:15:14 +03:00

16 lines
309 B
HCL

variable "bucket_name" {
description = "Name of the S3 bucket"
type = string
}
variable "folder_id" {
description = "Yandex Cloud folder ID"
type = string
}
variable "versioning_enabled" {
description = "Enable versioning for the bucket"
type = bool
default = false
}