@@ -28,7 +28,7 @@ import (
2828func TestAccComputeRegionHealthCheck_tcp_update (t * testing.T ) {
2929 t .Parallel ()
3030
31- hckName := fmt .Sprintf ("tf-test-%s" , acctest .RandString (t , 10 ))
31+ hckName := fmt .Sprintf ("tf-test-tcp- %s" , acctest .RandString (t , 10 ))
3232
3333 acctest .VcrTest (t , resource.TestCase {
3434 PreCheck : func () { acctest .AccTestPreCheck (t ) },
@@ -62,7 +62,7 @@ func TestAccComputeRegionHealthCheck_tcp_update(t *testing.T) {
6262func TestAccComputeRegionHealthCheck_grpcWithTls_create (t * testing.T ) {
6363 t .Parallel ()
6464
65- hckName := fmt .Sprintf ("tf-test-%s" , acctest .RandString (t , 10 ))
65+ hckName := fmt .Sprintf ("tf-test-grpc1- %s" , acctest .RandString (t , 10 ))
6666
6767 acctest .VcrTest (t , resource.TestCase {
6868 PreCheck : func () { acctest .AccTestPreCheck (t ) },
@@ -88,7 +88,7 @@ func TestAccComputeRegionHealthCheck_grpcWithTls_create(t *testing.T) {
8888func TestAccComputeRegionHealthCheck_grpcWithTls_update (t * testing.T ) {
8989 t .Parallel ()
9090
91- hckName := fmt .Sprintf ("tf-test-%s" , acctest .RandString (t , 10 ))
91+ hckName := fmt .Sprintf ("tf-test-grpc2- %s" , acctest .RandString (t , 10 ))
9292
9393 acctest .VcrTest (t , resource.TestCase {
9494 PreCheck : func () { acctest .AccTestPreCheck (t ) },
@@ -122,7 +122,7 @@ func TestAccComputeRegionHealthCheck_grpcWithTls_update(t *testing.T) {
122122func TestAccComputeRegionHealthCheck_ssl_port_spec (t * testing.T ) {
123123 t .Parallel ()
124124
125- hckName := fmt .Sprintf ("tf-test-%s" , acctest .RandString (t , 10 ))
125+ hckName := fmt .Sprintf ("tf-test-ssl- %s" , acctest .RandString (t , 10 ))
126126
127127 acctest .VcrTest (t , resource.TestCase {
128128 PreCheck : func () { acctest .AccTestPreCheck (t ) },
@@ -144,7 +144,7 @@ func TestAccComputeRegionHealthCheck_ssl_port_spec(t *testing.T) {
144144func TestAccComputeRegionHealthCheck_http_port_spec (t * testing.T ) {
145145 t .Parallel ()
146146
147- hckName := fmt .Sprintf ("tf-test-%s" , acctest .RandString (t , 10 ))
147+ hckName := fmt .Sprintf ("tf-test-http1- %s" , acctest .RandString (t , 10 ))
148148
149149 acctest .VcrTest (t , resource.TestCase {
150150 PreCheck : func () { acctest .AccTestPreCheck (t ) },
@@ -170,7 +170,7 @@ func TestAccComputeRegionHealthCheck_http_port_spec(t *testing.T) {
170170func TestAccComputeRegionHealthCheck_https_serving_port (t * testing.T ) {
171171 t .Parallel ()
172172
173- hckName := fmt .Sprintf ("tf-test-%s" , acctest .RandString (t , 10 ))
173+ hckName := fmt .Sprintf ("tf-test-http2- %s" , acctest .RandString (t , 10 ))
174174
175175 acctest .VcrTest (t , resource.TestCase {
176176 PreCheck : func () { acctest .AccTestPreCheck (t ) },
@@ -192,7 +192,7 @@ func TestAccComputeRegionHealthCheck_https_serving_port(t *testing.T) {
192192func TestAccComputeRegionHealthCheck_typeTransition (t * testing.T ) {
193193 t .Parallel ()
194194
195- hckName := fmt .Sprintf ("tf-test-%s" , acctest .RandString (t , 10 ))
195+ hckName := fmt .Sprintf ("tf-test-type- %s" , acctest .RandString (t , 10 ))
196196
197197 acctest .VcrTest (t , resource.TestCase {
198198 PreCheck : func () { acctest .AccTestPreCheck (t ) },
@@ -224,7 +224,7 @@ func TestAccComputeRegionHealthCheck_typeTransition(t *testing.T) {
224224func TestAccComputeRegionHealthCheck_logConfigDisabled (t * testing.T ) {
225225 t .Parallel ()
226226
227- hckName := fmt .Sprintf ("tf-test-%s" , acctest .RandString (t , 10 ))
227+ hckName := fmt .Sprintf ("tf-test-log- %s" , acctest .RandString (t , 10 ))
228228
229229 acctest .VcrTest (t , resource.TestCase {
230230 PreCheck : func () { acctest .AccTestPreCheck (t ) },
@@ -268,7 +268,7 @@ resource "google_compute_region_health_check" "foobar" {
268268 check_interval_sec = 3
269269 description = "Resource created for Terraform acceptance testing"
270270 healthy_threshold = 3
271- name = "health-test- %s"
271+ name = "%s"
272272 timeout_sec = 2
273273 unhealthy_threshold = 3
274274 tcp_health_check {
@@ -283,7 +283,7 @@ func testAccComputeRegionHealthCheck_tcp_update(hckName string) string {
283283resource "google_compute_region_health_check" "foobar" {
284284 check_interval_sec = 3
285285 healthy_threshold = 10
286- name = "health-test- %s"
286+ name = "%s"
287287 timeout_sec = 2
288288 unhealthy_threshold = 10
289289 tcp_health_check {
@@ -299,7 +299,7 @@ resource "google_compute_region_health_check" "foobar" {
299299 check_interval_sec = 3
300300 description = "Resource created for Terraform acceptance testing"
301301 healthy_threshold = 3
302- name = "tf-test-health-test- %s"
302+ name = "%s"
303303 timeout_sec = 2
304304 unhealthy_threshold = 3
305305 grpc_tls_health_check {
@@ -314,7 +314,7 @@ func testAccComputeRegionHealthCheck_grpcWithTls_update(hckName string) string {
314314resource "google_compute_region_health_check" "foobar" {
315315 check_interval_sec = 3
316316 healthy_threshold = 10
317- name = "tf-test-health-test- %s"
317+ name = "%s"
318318 timeout_sec = 2
319319 unhealthy_threshold = 10
320320 grpc_tls_health_check {
@@ -330,7 +330,7 @@ resource "google_compute_region_health_check" "foobar" {
330330 check_interval_sec = 3
331331 description = "Resource created for Terraform acceptance testing"
332332 healthy_threshold = 3
333- name = "health-test- %s"
333+ name = "%s"
334334 timeout_sec = 2
335335 unhealthy_threshold = 3
336336 ssl_health_check {
@@ -346,7 +346,7 @@ resource "google_compute_region_health_check" "foobar" {
346346 check_interval_sec = 3
347347 description = "Resource created for Terraform acceptance testing"
348348 healthy_threshold = 3
349- name = "health-test- %s"
349+ name = "%s"
350350 timeout_sec = 2
351351 unhealthy_threshold = 3
352352 ssl_health_check {
@@ -363,7 +363,7 @@ resource "google_compute_region_health_check" "foobar" {
363363 check_interval_sec = 3
364364 description = "Resource created for Terraform acceptance testing"
365365 healthy_threshold = 3
366- name = "health-test- %s"
366+ name = "%s"
367367 timeout_sec = 2
368368 unhealthy_threshold = 3
369369 http_health_check {
@@ -379,7 +379,7 @@ resource "google_compute_region_health_check" "foobar" {
379379 check_interval_sec = 3
380380 description = "Resource created for Terraform acceptance testing"
381381 healthy_threshold = 3
382- name = "health-test- %s"
382+ name = "%s"
383383 timeout_sec = 2
384384 unhealthy_threshold = 3
385385 http_health_check {
@@ -395,7 +395,7 @@ resource "google_compute_region_health_check" "foobar" {
395395 check_interval_sec = 3
396396 description = "Resource created for Terraform acceptance testing"
397397 healthy_threshold = 3
398- name = "health-test- %s"
398+ name = "%s"
399399 timeout_sec = 2
400400 unhealthy_threshold = 3
401401 http_health_check {
@@ -412,7 +412,7 @@ resource "google_compute_region_health_check" "foobar" {
412412 check_interval_sec = 3
413413 description = "Resource created for Terraform acceptance testing"
414414 healthy_threshold = 3
415- name = "health-test- %s"
415+ name = "%s"
416416 timeout_sec = 2
417417 unhealthy_threshold = 3
418418 https_health_check {
@@ -428,7 +428,7 @@ resource "google_compute_region_health_check" "foobar" {
428428 check_interval_sec = 3
429429 description = "Resource created for Terraform acceptance testing"
430430 healthy_threshold = 3
431- name = "health-test- %s"
431+ name = "%s"
432432 timeout_sec = 2
433433 unhealthy_threshold = 3
434434 https_health_check {
@@ -444,7 +444,7 @@ resource "google_compute_region_health_check" "foobar" {
444444 check_interval_sec = 3
445445 description = "Resource created for Terraform acceptance testing"
446446 healthy_threshold = 3
447- name = "health-test- %s"
447+ name = "%s"
448448 timeout_sec = 2
449449 unhealthy_threshold = 3
450450 http2_health_check {
0 commit comments