Complete restructure

This commit is contained in:
gregory hendrickson
2023-03-15 13:17:41 -07:00
parent 2081f04c24
commit cf7e3c2271
22 changed files with 369 additions and 521 deletions

12
modules/storage/main.tf Normal file
View File

@@ -0,0 +1,12 @@
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"
}