blob: 1d4f2c418fb7d9aa0bcd2838f02fddd8aed5dd4e (
plain) (
tree)
|
|
# GCP Configuration
project_id = "fcuny-infra"
region = "us-west1"
# Bucket Configuration
bucket_name = "fcuny-infra-backups"
location = "us-west1"
# Bucket Settings
uniform_bucket_level_access = true
force_destroy = true
public_access_prevention = "enforced"
storage_class = "NEARLINE"
# Lifecycle Rules (optional customization)
lifecycle_rules = [
{
age = 365 # After 1 year
action = "SetStorageClass"
storage_class = "COLDLINE"
},
{
age = 730 # After 2 years
action = "SetStorageClass"
storage_class = "ARCHIVE"
}
]
|