chore(infra): Remove unused tf vars (#7803)

These were leftover from #7737 and friends.
This commit is contained in:
Jamil
2025-01-21 21:32:28 -08:00
committed by GitHub
parent 0dcb14d9a2
commit dca9645adf
2 changed files with 1 additions and 13 deletions

View File

@@ -357,7 +357,7 @@ resource "google_compute_region_instance_group_manager" "application" {
# TODO: Rate limit requests to the relays by source IP address
# Open ports for the web
# Open ports for STUN and TURN
resource "google_compute_firewall" "stun-turn-ipv4" {
project = var.project_id

View File

@@ -23,18 +23,6 @@ variable "network" {
description = "ID of a Google Cloud Network"
}
variable "base_cidr_block" {
type = string
default = "10.128.0.0/9"
description = "The base CIDR block for subnets. Must not overlap with existing subnet."
}
variable "extension_bits" {
type = number
default = 15
description = "Number of bits to extend the base CIDR block by."
}
################################################################################
## Container Registry
################################################################################