Files
GSP662/modules/storage/main.tf
gregory hendrickson cf7e3c2271 Complete restructure
2023-03-15 13:17:41 -07:00

12 lines
365 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"
}