This commit is contained in:
gregory hendrickson
2023-03-15 14:57:37 -07:00
parent d345ee1d49
commit d8ff747842
2 changed files with 9 additions and 3 deletions

View File

@@ -3,4 +3,10 @@
module "storage" {
source = "./modules/storage"
project_id = var.project_id
}
module "instance" {
source = "./modules/instances"
}

View File

@@ -9,7 +9,7 @@ resource "google_storage_bucket_object" "startup_script" {
bucket = google_storage_bucket.fancy_store.name
source = "${path.module}/startup-script.sh"
content_type = "text/plain"
}
variable "project_id" {
depends_on = [google_storage_bucket.fancy_store]
}