20 lines
380 B
Terraform
20 lines
380 B
Terraform
|
|
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
|
||
|
|
}
|
||
|
|
}
|