File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -677,7 +677,7 @@ resource "google_dataproc_cluster" "basic" {
677
677
func testAccDataprocCluster_basicWithInternalIpOnlyTrue (rnd string ) string {
678
678
return fmt .Sprintf (`
679
679
resource "google_compute_network" "dataproc_network" {
680
- name = "dataproc-internalip-network"
680
+ name = "dataproc-internalip-network-%s "
681
681
auto_create_subnetworks = false
682
682
}
683
683
@@ -686,7 +686,7 @@ resource "google_compute_network" "dataproc_network" {
686
686
# deploying a Dataproc cluster with Internal IP Only enabled.
687
687
#
688
688
resource "google_compute_subnetwork" "dataproc_subnetwork" {
689
- name = "dataproc-internalip-subnetwork"
689
+ name = "dataproc-internalip-subnetwork-%s "
690
690
ip_cidr_range = "10.0.0.0/16"
691
691
network = "${google_compute_network.dataproc_network.self_link}"
692
692
region = "us-central1"
@@ -730,7 +730,7 @@ resource "google_dataproc_cluster" "basic" {
730
730
}
731
731
}
732
732
}
733
- ` , rnd )
733
+ ` , rnd , rnd , rnd )
734
734
}
735
735
736
736
func testAccDataprocCluster_basicWithAutogenDeleteTrue (rnd string ) string {
You can’t perform that action at this time.
0 commit comments