Files
GSP662/modules/storage/main.tf
gregory hendrickson d8ff747842 .
2023-03-15 14:57:37 -07:00

16 lines
421 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]
}