Files
pinniped/infra/terraform/gcloud/cluster/variables.tf
T

26 lines
626 B
Terraform

# Copyright 2023-2024 the Pinniped contributors. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
variable "name" {
default = ""
description = "The name of the GKE cluster to be created."
}
variable "zone" {
default = ""
description = "The zone where the cluster should live."
}
variable "region" {
default = ""
description = "The region in which the cluster should be located at."
}
variable "project" {
description = "The Google GCP project to host the resources."
}
variable "node-pools" {
description = "A list of node pool configurations to create and assign to the cluster."
}