diff --git a/modules/gcp/main.tf b/modules/gcp/main.tf index d556421..e8c0665 100644 --- a/modules/gcp/main.tf +++ b/modules/gcp/main.tf @@ -4,7 +4,6 @@ locals { resource "google_project_service" "enabled_service" { for_each = toset(local.services) - project = var.project_id service = each.key provisioner "local-exec" { command = "sleep 60" diff --git a/modules/gcp/variables.tf b/modules/gcp/variables.tf index f41cd6a..fb4c294 100644 --- a/modules/gcp/variables.tf +++ b/modules/gcp/variables.tf @@ -1,8 +1,3 @@ -variable "project_id" { - description = "The GCP project id" - type = string -} - variable "region" { default = "us-central1" description = "GCP region"