mirror of
https://gitlab.sarex.io/infra/terraform-contour-mirror.git
synced 2026-08-05 18:31:00 +03:00
- 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
16 lines
309 B
HCL
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
|
|
}
|