Some checks are pending
Deploy Home Assistant / deploy (push) Waiting to run
Build juntekim.com / Push-to-juntekim-to-docker-hub (push) Waiting to run
Build juntekim.com / run-on-k8s (push) Blocked by required conditions
Deploy n8n / deploy (push) Waiting to run
Build & Deploy stripe-to-invoice (with DB secrets + migrations) / build (push) Waiting to run
Build & Deploy stripe-to-invoice (with DB secrets + migrations) / Deploy Postgres (PV + PVC + Deployment) (push) Blocked by required conditions
Build & Deploy stripe-to-invoice (with DB secrets + migrations) / Apply runtime secrets (push) Blocked by required conditions
Build & Deploy stripe-to-invoice (with DB secrets + migrations) / Run DB migrations (Atlas) (push) Blocked by required conditions
Build & Deploy stripe-to-invoice (with DB secrets + migrations) / deploy (push) Blocked by required conditions
Terraform Apply / Terraform Apply (push) Waiting to run
Terraform Apply / Terraform Apply - SES (push) Blocked by required conditions
16 lines
364 B
HCL
16 lines
364 B
HCL
variable "bucket_name" {
|
|
description = "Name of the S3 bucket"
|
|
type = string
|
|
}
|
|
|
|
variable "versioning_enabled" {
|
|
description = "Enable versioning on the bucket"
|
|
type = bool
|
|
default = true
|
|
}
|
|
|
|
variable "retention_days" {
|
|
description = "Number of days before objects expire. 0 disables expiry."
|
|
type = number
|
|
default = 0
|
|
}
|