This commit is contained in:
gregory hendrickson
2023-03-15 13:44:42 -07:00
parent 2dbecd83d3
commit c469d87606
2 changed files with 3 additions and 10 deletions

View File

@@ -9,4 +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" {
}

View File

@@ -2,13 +2,3 @@ variable "project_id" {
type = string
description = "The ID of the project to deploy resources into"
}
variable "region" {
type = string
description = "The region to deploy resources into"
}
variable "zone" {
type = string
description = "The zone in which resource to be deployed"
}