tf-gke-test/variables.tf

29 lines
591 B
Terraform
Raw Permalink Normal View History

2023-05-03 14:52:20 +02:00
variable "project" {
description = "Google Project to create resources in"
type = string
default = "demo"
}
variable "vpc_host_project" {
description = "Host Project where virtual network exists"
type = string
default = "demo"
}
variable "environment_name" {
type = string
default = "demo"
}
variable "region" {
type = string
description = "The region to host the cluster in"
default = "us-central1"
}
2024-05-05 11:35:15 +02:00
variable "zone" {
type = string
description = "The region to host the cluster in"
default = "us-central1-b"
}