Skip to content

Commit

Permalink
Updated based on addtional PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
NA2047 committed Mar 8, 2023
1 parent 4f15813 commit 3fbdedb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1209,7 +1209,7 @@ func TestAccComputeInstanceTemplate_sourceSnapshotEncryptionKey(t *testing.T) {
context := map[string]interface{}{
"kms_ring_name": GetResourceNameFromSelfLink(kmsKey.CryptoKey.Name),
"kms_key_name": GetResourceNameFromSelfLink(kmsKey.KeyRing.Name),
"random_suffix": randString(t, 10),
"random_suffix": RandString(t, 10),
}


Expand Down Expand Up @@ -1244,7 +1244,7 @@ func TestAccComputeInstanceTemplate_sourceImageEncryptionKey(t *testing.T) {
context := map[string]interface{}{
"kms_ring_name": GetResourceNameFromSelfLink(kmsKey.CryptoKey.Name),
"kms_key_name": GetResourceNameFromSelfLink(kmsKey.KeyRing.Name),
"random_suffix": randString(t, 10),
"random_suffix": RandString(t, 10),
}

VcrTest(t, resource.TestCase{
Expand Down Expand Up @@ -3149,7 +3149,7 @@ data "google_kms_crypto_key" "key" {
}

resource "google_service_account" "test" {
account_id = "test-sa-%{random_suffix}"
account_id = "tf-test-sa-%{random_suffix}"
display_name = "KMS Ops Account"
}

Expand Down

0 comments on commit 3fbdedb

Please sign in to comment.