Skip to content

Commit 87b7efe

Browse files
committed
TF: Change disk types to cheaper ones
1 parent 0ce56d4 commit 87b7efe

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

terraform/modules/blc/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ resource "google_compute_instance_template" "blc" {
5656

5757
disk {
5858
source_image = var.boot_image
59-
disk_type = "pd-ssd"
59+
disk_type = "pd-balanced"
6060
auto_delete = true
6161
boot = true
6262
disk_size_gb = 20

terraform/modules/tor/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ resource "google_compute_instance_template" "tor" {
5151
source_image = var.boot_image
5252
boot = true
5353
auto_delete = true
54-
disk_type = "pd-ssd"
54+
disk_type = "pd-standard"
5555
device_name = "boot"
5656
disk_size_gb = "20"
5757
}

0 commit comments

Comments
 (0)