From c1522a7480409907e2507920a19b5353beee6936 Mon Sep 17 00:00:00 2001 From: Modular Magician Date: Wed, 17 May 2023 19:35:02 +0000 Subject: [PATCH] Datastream - Add mysql backfill max tasks (#7924) * Add mysql backfill max tasks * Add mysql backfill max tasks to tests Signed-off-by: Modular Magician --- datastream_stream_basic/main.tf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/datastream_stream_basic/main.tf b/datastream_stream_basic/main.tf index 28b14648..d854d197 100644 --- a/datastream_stream_basic/main.tf +++ b/datastream_stream_basic/main.tf @@ -110,7 +110,9 @@ resource "google_datastream_stream" "default" { display_name = "my stream" source_config { source_connection_profile = google_datastream_connection_profile.source_connection_profile.id - mysql_source_config {} + mysql_source_config { + max_concurrent_backfill_tasks = 15 + } } destination_config { destination_connection_profile = google_datastream_connection_profile.destination_connection_profile.id