Files
khuedoan-homelab/external/modules/backup/variables.tf

11 lines
245 B
Terraform
Raw Normal View History

2024-01-22 09:17:56 +07:00
variable "backup_buckets" {
type = list(object({
name = string
url = string
bucket = string
region = string
access_key_id = string
secret_access_key = string
}))
}