tf-gke-test/bucket/variables.tf

18 lines
379 B
Terraform
Raw Normal View History

2024-09-01 13:19:36 +02:00
variable "project" {
type = string
description = "Google Project to create resources in"
default = "demo"
}
variable "region" {
type = string
description = "The region to host the cluster in"
default = "europe-west1"
}
variable "iam_user_email" {
type = string
description = "Your gcloud account"
default = "demo@gmail.com"
}