Re-enable gce ingress.

This commit is contained in:
Tom Alexander
2025-03-22 17:03:19 -04:00
parent 91dd7095da
commit cbab018652
2 changed files with 4 additions and 3 deletions

View File

@@ -1,3 +1,4 @@
# TODO: put IP address ranges into variables
terraform {
backend "gcs" {
bucket = "tf-state-4b00"
@@ -50,8 +51,8 @@ variable "ingress_type" {
default = "gateway"
validation {
condition = contains(["gateway", "nginx"], var.ingress_type)
error_message = "Must be either \"gateway\" or \"nginx\"."
condition = contains(["gateway", "nginx", "gce"], var.ingress_type)
error_message = "Must be either \"gateway\", \"nginx\", or \"gce\"."
}
}