mirror of
https://github.com/ghndrx/GSP662.git
synced 2026-02-10 06:54:58 +00:00
19 lines
500 B
HCL
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
|
|
} |