Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix errors details for zonal resize request & align with mixer errors details #875

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions compute_mig_resize_request/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
resource "google_compute_region_instance_template" "a3_dws" {
name = "a3-dws"
name = "a3-dws-${local.name_suffix}"
region = "us-central1"
description = "This template is used to create a mig instance that is compatible with DWS resize requests."
instance_description = "A3 GPU"
Expand Down Expand Up @@ -40,7 +40,7 @@ resource "google_compute_region_instance_template" "a3_dws" {
}

resource "google_compute_instance_group_manager" "a3_dws" {
name = "a3-dws"
name = "a3-dws-${local.name_suffix}"
base_instance_name = "a3-dws"
zone = "us-central1-a"

Expand Down