Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions spartan/terraform/deploy-aztec-infra/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -731,23 +731,13 @@ variable "RPC_INGRESS_SESSION_AFFINITY" {
description = "Session affinity type for the RPC BackendConfig. One of NONE, CLIENT_IP, GENERATED_COOKIE. Leave empty for no affinity (GCE default)."
type = string
default = ""

validation {
condition = contains(["", "NONE", "CLIENT_IP", "GENERATED_COOKIE"], var.RPC_INGRESS_SESSION_AFFINITY)
error_message = "RPC_INGRESS_SESSION_AFFINITY must be empty, NONE, CLIENT_IP, or GENERATED_COOKIE."
}
}

variable "RPC_INGRESS_LOG_SAMPLE_RATE" {
description = "LB access-log sample rate for the RPC BackendConfig (0.0-1.0). When set, logs include the Cloud Armor matched rule priority. Leave null to disable logging (GCE default)."
type = number
nullable = true
default = null

validation {
condition = var.RPC_INGRESS_LOG_SAMPLE_RATE == null || (var.RPC_INGRESS_LOG_SAMPLE_RATE >= 0 && var.RPC_INGRESS_LOG_SAMPLE_RATE <= 1)
error_message = "RPC_INGRESS_LOG_SAMPLE_RATE must be null or a float in [0.0, 1.0]."
}
}

variable "PROVER_FAILED_PROOF_STORE" {
Expand Down
Loading