From 5e1ab2fb0ca466f6e1d532a1ab37af3bb798c965 Mon Sep 17 00:00:00 2001 From: yairra Date: Tue, 27 Aug 2024 14:06:36 +0300 Subject: [PATCH] GCP TF | Single GW | Updated diskType default value --- terraform/gcp/single-into-existing-vpc/variables.tf | 2 +- terraform/gcp/single-into-new-vpc/variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/gcp/single-into-existing-vpc/variables.tf b/terraform/gcp/single-into-existing-vpc/variables.tf index 0b4718bc..cc620851 100755 --- a/terraform/gcp/single-into-existing-vpc/variables.tf +++ b/terraform/gcp/single-into-existing-vpc/variables.tf @@ -110,7 +110,7 @@ variable "network_espSourceRanges" { variable "diskType" { type = string description ="Disk type" - default = "pd-ssd" + default = "SSD Persistent Disk" } variable "bootDiskSizeGb" { type = number diff --git a/terraform/gcp/single-into-new-vpc/variables.tf b/terraform/gcp/single-into-new-vpc/variables.tf index 51d15492..3d6454cf 100755 --- a/terraform/gcp/single-into-new-vpc/variables.tf +++ b/terraform/gcp/single-into-new-vpc/variables.tf @@ -112,7 +112,7 @@ variable "network_espSourceRanges" { variable "diskType" { type = string description ="Disk type" - default = "pd-ssd" + default = "SSD Persistent Disk" } variable "bootDiskSizeGb" { type = number