tf-gke-test/variables.tf

28 lines
549 B
Terraform
Raw 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"
}
variable "gke_num_nodes" {
default = 1
description = "number of gke nodes"
}