gitops/iac-template/terraform-hcl-standard/gcp-cloud/modules/s3/main.tf
2025-11-20 21:37:34 +08:00

29 lines
604 B
HCL

variable "project_id" {
description = "Project id"
type = string
}
variable "name" {
description = "Bucket name"
type = string
}
variable "location" {
description = "Bucket location"
type = string
default = "US"
}
resource "google_storage_bucket" "this" {
name = var.name
project = var.project_id
location = var.location
uniform_bucket_level_access = true
versioning { enabled = true }
}
output "bucket" {
value = google_storage_bucket.this.name
description = "Storage bucket"
}