Fixed variable order

This commit is contained in:
Christoph Grotz 2023-02-24 17:27:49 +00:00
parent d97426633e
commit c9915b11a4
1 changed files with 6 additions and 2 deletions

View File

@ -31,18 +31,22 @@ variable "project_create" {
variable "consumer_project_id" {
description = "The consumer project, in which the GCLB and Cloud Armor should be created."
type = string
}
variable "producer_project_id" {
description = "The producer project, in which the ILB, PSC Service Attachment and Cloud Run service should be created"
type = string
}
variable "region" {
default = "europe-west1"
description = "The GCP region in which the resources should be deployed."
type = string
default = "europe-west1"
}
variable "zone" {
default = "europe-west1-b"
description = "The GCP zone for the VM."
type = string
default = "europe-west1-b"
}