Skip to content

Commit 9f52338

Browse files
add tf-test prefix to compute reservation and dialogflowcx tests (#14509) (#1045)
[upstream:96a9e345b646eb02ffd950fd2b2639eaf171fcd0] Signed-off-by: Modular Magician <[email protected]>
1 parent 106f592 commit 9f52338

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

dialogflowcx_flow_full/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ resource "google_dialogflow_cx_flow" "basic_flow" {
410410

411411
resource "google_discovery_engine_data_store" "my_datastore" {
412412
location = "global"
413-
data_store_id = "datastore-flow-full"
413+
data_store_id = "datastore-flow-full-${local.name_suffix}"
414414
display_name = "datastore-flow-full"
415415
industry_vertical = "GENERIC"
416416
content_config = "NO_CONTENT"

dialogflowcx_page_full/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ resource "google_dialogflow_cx_page" "my_page2" {
672672

673673
resource "google_discovery_engine_data_store" "my_datastore" {
674674
location = "global"
675-
data_store_id = "datastore-page-full"
675+
data_store_id = "datastore-page-full-${local.name_suffix}"
676676
display_name = "datastore-page-full"
677677
industry_vertical = "GENERIC"
678678
content_config = "NO_CONTENT"

dialogflowcx_tool_data_store/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ resource "google_dialogflow_cx_tool" "data_store_tool" {
3030

3131
resource "google_discovery_engine_data_store" "my_datastore" {
3232
location = "global"
33-
data_store_id = "datastore-tool-test-%{random_suffix}"
33+
data_store_id = "datastore-tool-${local.name_suffix}"
3434
display_name = "datastore for Tool test"
3535
industry_vertical = "GENERIC"
3636
content_config = "NO_CONTENT"

reservation_sharing_policy/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ data "google_compute_image" "my_image" {
44
}
55

66
resource "google_compute_instance_template" "foobar" {
7-
name = "tf-test-instance-template"
7+
name = "instance-template-${local.name_suffix}"
88
machine_type = "g2-standard-4"
99
can_ip_forward = false
1010
tags = ["foo", "bar"]

reservation_source_instance_template/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ data "google_compute_image" "my_image" {
44
}
55

66
resource "google_compute_instance_template" "foobar" {
7-
name = "tf-test-instance-template"
7+
name = "instance-template-${local.name_suffix}"
88
machine_type = "n2-standard-2"
99
can_ip_forward = false
1010
tags = ["foo", "bar"]

0 commit comments

Comments
 (0)