fix(scaletest): change IP range to non-reserved in GCP (#9146)

Signed-off-by: Spike Curtis <spike@coder.com>
This commit is contained in:
Spike Curtis 2023-08-17 13:11:02 +04:00 committed by GitHub
parent c7a6d626b4
commit c66befb548
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ resource "google_compute_subnetwork" "subnet" {
project = var.project_id
region = var.region
network = google_compute_network.vpc.name
ip_cidr_range = "10.10.0.0/24"
ip_cidr_range = "10.200.0.0/24"
}
resource "google_compute_global_address" "sql_peering" {