Fix memory typo (#1016)

This commit is contained in:
Joe Heaton.dev 2022-11-27 17:29:25 +00:00 committed by GitHub
parent 0a529c93a1
commit 9fa381f5ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ resource "google_container_cluster" "cluster" {
dynamic "resource_limits" {
for_each = var.cluster_autoscaling.mem_limits != null ? [""] : []
content {
resource_type = "cpu"
resource_type = "memory"
minimum = var.cluster_autoscaling.mem_limits.min
maximum = var.cluster_autoscaling.mem_limits.max
}