19 lines
380 B
HCL
19 lines
380 B
HCL
resource "google_storage_bucket" "backups" {
|
|
name = "${var.project_id}-forgejo-backups"
|
|
location = var.region
|
|
storage_class = "STANDARD"
|
|
uniform_bucket_level_access = true
|
|
|
|
lifecycle_rule {
|
|
condition {
|
|
age = 30
|
|
}
|
|
action {
|
|
type = "Delete"
|
|
}
|
|
}
|
|
|
|
versioning {
|
|
enabled = false
|
|
}
|
|
}
|