-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocals.stage.tf
More file actions
25 lines (24 loc) · 838 Bytes
/
locals.stage.tf
File metadata and controls
25 lines (24 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
locals {
BIGQUERY_NAME_STAGE = "BigQuery (STAGE)"
connections_stage = {
"customers_data → ${local.BIGQUERY_NAME_PROD}" = {
source_id = module.s3_source["customers_data"].source_id
destination_id = module.bigquery_destination.destination_id
status = "active"
non_breaking_schema_updates_behavior = "ignore"
namespace_definition = "custom_format"
namespace_format = local.namespace_formats["cne-ai_customers_data"]
schedule = {
schedule_type = "manual"
cron_expression = ""
}
streams = [
{
sync_mode = "full_refresh_overwrite"
name = "customers_data"
selected = true
}
]
},
}
}