chore(infra): Use numeric instead of number (#7731)

`number` is deprecated for the built-in `random_string` resource.
This commit is contained in:
Jamil
2025-01-12 13:09:29 -08:00
committed by GitHub
parent ba5b8ed3f5
commit d6d0d78bda
2 changed files with 2 additions and 2 deletions

View File

@@ -146,7 +146,7 @@ resource "random_string" "subnet_suffix" {
length = 8
special = false
upper = false
number = true
numeric = true
}
resource "google_compute_subnetwork" "subnetwork" {

View File

@@ -19,7 +19,7 @@ variable "instances" {
variable "base_cidr_block" {
type = string
default = "10.129.0.0/16"
default = "10.200.0.0/16"
description = "The base CIDR block for subnets."
}