From c469d8760630fce9e431526ceb497e62bc96d884 Mon Sep 17 00:00:00 2001 From: gregory hendrickson Date: Wed, 15 Mar 2023 13:44:42 -0700 Subject: [PATCH] . --- modules/storage/main.tf | 3 +++ variables.tf | 10 ---------- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/modules/storage/main.tf b/modules/storage/main.tf index ffd8bf7..1e22bc0 100644 --- a/modules/storage/main.tf +++ b/modules/storage/main.tf @@ -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" { + } \ No newline at end of file diff --git a/variables.tf b/variables.tf index fb79893..1b75331 100644 --- a/variables.tf +++ b/variables.tf @@ -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" -} \ No newline at end of file