1
0
Fork 0
mirror of https://github.com/external-secrets/external-secrets.git synced 2024-12-14 11:57:59 +00:00
external-secrets/terraform/gcp/variable.tf

17 lines
724 B
Terraform
Raw Normal View History

2021-12-29 12:02:56 +00:00
variable "env" { default = "test" }
variable "region" { default = "europe-west1" }
variable "zone" { default = "europe-west1-b" }
variable "horizontal_pod_autoscaling" { default = false }
variable "node_count" { default = 2 }
variable "node_min_count" { default = 2 }
variable "node_max_count" { default = 2 }
variable "initial_node_count" { default = 2 }
variable "max_scale" { default = "10" }
variable "ip_cidr_range" { default = "10.69.0.0/16" }
variable "ip-pod-range" { default = "10.70.0.0/16" }
variable "ip_service_range" { default = "10.71.0.0/16" }
variable "preemptible" { default = true }
variable "GCP_PROJECT_ID" {type = string}
variable "GCP_GSA_NAME" {type = string}
variable "GCP_KSA_NAME" {type = string}