Files
GSP662/modules/storage/main.tf
gregory hendrickson 5e709d6fe6 s
2023-03-15 15:18:18 -07:00

19 lines
500 B
HCL

resource "google_storage_bucket" "fancy_store" {
name = "fancy-store-${var.project_id}"
location = "US"
force_destroy = true
}
resource "google_storage_bucket_object" "startup_script" {
name = "startup-script.sh"
bucket = google_storage_bucket.fancy_store.name
source = "${path.module}/startup-script.sh"
content_type = "text/plain"
depends_on = [google_storage_bucket.fancy_store]
}
output "fancy_store_name" {
value = google_storage_bucket.fancy_store.name
}