Skip to content

Commit

Permalink
Change supported machine type to fix CHD tests. (GoogleCloudPlatform#…
Browse files Browse the repository at this point in the history
  • Loading branch information
harshulsoni authored Apr 10, 2024
1 parent dc3e088 commit a463e86
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1850,6 +1850,7 @@ func TestAccComputeInstance_confidentialHyperDiskBootDisk(t *testing.T) {
"key_ring": kms.KeyRing.Name,
"key_name": kms.CryptoKey.Name,
"zone": "us-central1-a",
"machine_type": "n2-standard-16",

}

Expand All @@ -1859,6 +1860,7 @@ func TestAccComputeInstance_confidentialHyperDiskBootDisk(t *testing.T) {
"key_ring" : context_1["key_ring"],
"key_name": context_1["key_name"],
"zone": context_1["zone"],
"machine_type": "c3d-standard-16",
}


Expand Down Expand Up @@ -7420,7 +7422,7 @@ resource "google_kms_crypto_key_iam_member" "crypto_key" {

resource "google_compute_instance" "foobar" {
name = "%{instance_name}"
machine_type = "h3-standard-88"
machine_type = "%{machine_type}"
zone = "%{zone}"

boot_disk {
Expand Down

0 comments on commit a463e86

Please sign in to comment.