File tree 10 files changed +30
-85
lines changed
airbyte_dbt_airflow_snowflake/infra/airbyte
airbyte_dbt_dagster/infra/airbyte
airbyte_dbt_prefect_snowflake/infra/airbyte
airbyte_dbt_snowflake_looker/infra/airbyte
database_snapshot/infra/airbyte/sources
low_latency_data_availability/infra/airbyte
mysql_to_postgres_incremental_stack/infra/airbyte
postgres_data_replication/infra/airbyte
postgres_snowflake_integration/infra/airbyte
postgres_to_mysql_migration/infra/airbyte
10 files changed +30
-85
lines changed Original file line number Diff line number Diff line change @@ -13,19 +13,13 @@ resource "airbyte_source_postgres" "postgres" {
13
13
" ...my_schema..."
14
14
]
15
15
ssl_mode = {
16
- source_postgres_ssl_modes_allow = {
17
- mode = " allow"
18
- }
16
+ allow = {}
19
17
}
20
18
tunnel_method = {
21
- source_postgres_ssh_tunnel_method_no_tunnel = {
22
- tunnel_method = " NO_TUNNEL"
23
- }
19
+ no_tunnel = {}
24
20
}
25
21
replication_method = {
26
- source_postgres_update_method_scan_changes_with_user_defined_cursor = {
27
- method = " Standard"
28
- }
22
+ scan_changes_with_user_defined_cursor = {}
29
23
}
30
24
}
31
25
name = " Postgres"
Original file line number Diff line number Diff line change @@ -13,20 +13,12 @@ resource "airbyte_source_postgres" "postgres" {
13
13
" ...my_schema..."
14
14
]
15
15
ssl_mode = {
16
- source_postgres_ssl_modes_allow = {
17
- mode = " allow"
18
- }
16
+ allow = {}
19
17
}
20
18
tunnel_method = {
21
- source_postgres_ssh_tunnel_method_no_tunnel = {
22
- tunnel_method = " NO_TUNNEL"
23
- }
24
- }
25
- replication_method = {
26
- source_postgres_replication_method_standard = {
27
- method = " Standard"
28
- }
19
+ no_tunnel = {}
29
20
}
21
+ replication_method = {}
30
22
}
31
23
name = " Postgres"
32
24
workspace_id = var. workspace_id
Original file line number Diff line number Diff line change @@ -13,19 +13,13 @@ resource "airbyte_source_postgres" "postgres" {
13
13
" ...my_schema..."
14
14
]
15
15
ssl_mode = {
16
- source_postgres_ssl_modes_allow = {
17
- mode = " allow"
18
- }
16
+ allow = {}
19
17
}
20
18
tunnel_method = {
21
- source_postgres_ssh_tunnel_method_no_tunnel = {
22
- tunnel_method = " NO_TUNNEL"
23
- }
19
+ no_tunnel = {}
24
20
}
25
21
replication_method = {
26
- source_postgres_update_method_scan_changes_with_user_defined_cursor = {
27
- method = " Standard"
28
- }
22
+ scan_changes_with_user_defined_cursor = {}
29
23
}
30
24
}
31
25
name = " Postgres"
Original file line number Diff line number Diff line change @@ -13,19 +13,13 @@ resource "airbyte_source_postgres" "postgres" {
13
13
" ...my_schema..."
14
14
]
15
15
ssl_mode = {
16
- source_postgres_ssl_modes_allow = {
17
- mode = " allow"
18
- }
16
+ allow = {}
19
17
}
20
18
tunnel_method = {
21
- source_postgres_ssh_tunnel_method_no_tunnel = {
22
- tunnel_method = " NO_TUNNEL"
23
- }
19
+ no_tunnel = {}
24
20
}
25
21
replication_method = {
26
- source_postgres_update_method_scan_changes_with_user_defined_cursor = {
27
- method = " Standard"
28
- }
22
+ scan_changes_with_user_defined_cursor = {}
29
23
}
30
24
}
31
25
name = " Postgres"
Original file line number Diff line number Diff line change @@ -13,19 +13,13 @@ resource "airbyte_source_postgres" "postgres" {
13
13
" ...my_schema..."
14
14
]
15
15
ssl_mode = {
16
- source_postgres_ssl_modes_allow = {
17
- mode = " allow"
18
- }
16
+ allow = {}
19
17
}
20
18
tunnel_method = {
21
- source_postgres_ssh_tunnel_method_no_tunnel = {
22
- tunnel_method = " NO_TUNNEL"
23
- }
19
+ no_tunnel = {}
24
20
}
25
21
replication_method = {
26
- source_postgres_update_method_scan_changes_with_user_defined_cursor = {
27
- method = " Standard"
28
- }
22
+ scan_changes_with_user_defined_cursor = {}
29
23
}
30
24
}
31
25
name = " Postgres"
Original file line number Diff line number Diff line change @@ -13,18 +13,13 @@ resource "airbyte_source_postgres" "postgres" {
13
13
" ...my_schema..."
14
14
]
15
15
ssl_mode = {
16
- source_postgres_ssl_modes_allow = {
17
- mode = " allow"
18
- }
16
+ allow = {}
19
17
}
20
18
tunnel_method = {
21
- source_postgres_ssh_tunnel_method_no_tunnel = {
22
- tunnel_method = " NO_TUNNEL"
23
- }
19
+ no_tunnel = {}
24
20
}
25
21
replication_method = {
26
- source_postgres_update_method_read_changes_using_write_ahead_log_cdc = {
27
- method = " CDC"
22
+ read_changes_using_write_ahead_log_cdc = {
28
23
publication = " ...pub..."
29
24
replication_slot = " ...slot..."
30
25
}
Original file line number Diff line number Diff line change @@ -33,15 +33,12 @@ resource "airbyte_destination_postgres" "my_destination_postgres" {
33
33
password = " ...my_password..."
34
34
port = 5432
35
35
schema = " public"
36
+ ssl = true
36
37
ssl_mode = {
37
- destination_postgres_ssl_modes_allow = {
38
- mode = " allow"
39
- }
38
+ allow = {}
40
39
}
41
40
tunnel_method = {
42
- destination_postgres_ssh_tunnel_method_no_tunnel = {
43
- tunnel_method = " NO_TUNNEL"
44
- }
41
+ no_tunnel = {}
45
42
}
46
43
username = " ...my_username..."
47
44
}
Original file line number Diff line number Diff line change @@ -13,18 +13,13 @@ resource "airbyte_source_postgres" "postgres" {
13
13
" ...my_schema..."
14
14
]
15
15
ssl_mode = {
16
- source_postgres_ssl_modes_allow = {
17
- mode = " allow"
18
- }
16
+ allow = {}
19
17
}
20
18
tunnel_method = {
21
- source_postgres_ssh_tunnel_method_no_tunnel = {
22
- tunnel_method = " NO_TUNNEL"
23
- }
19
+ no_tunnel = {}
24
20
}
25
21
replication_method = {
26
- source_postgres_update_method_read_changes_using_write_ahead_log_cdc = {
27
- method = " CDC"
22
+ read_changes_using_write_ahead_log_cdc = {
28
23
publication = " ...pub..."
29
24
replication_slot = " ...slot..."
30
25
}
Original file line number Diff line number Diff line change @@ -13,18 +13,13 @@ resource "airbyte_source_postgres" "postgres" {
13
13
" ...my_schema..."
14
14
]
15
15
ssl_mode = {
16
- source_postgres_ssl_modes_allow = {
17
- mode = " allow"
18
- }
16
+ allow = {}
19
17
}
20
18
tunnel_method = {
21
- source_postgres_ssh_tunnel_method_no_tunnel = {
22
- tunnel_method = " NO_TUNNEL"
23
- }
19
+ no_tunnel = {}
24
20
}
25
21
replication_method = {
26
- source_postgres_update_method_read_changes_using_write_ahead_log_cdc = {
27
- method = " CDC"
22
+ read_changes_using_write_ahead_log_cdc = {
28
23
publication = " ...pub..."
29
24
replication_slot = " ...slot..."
30
25
}
Original file line number Diff line number Diff line change @@ -13,18 +13,13 @@ resource "airbyte_source_postgres" "postgres" {
13
13
" ...my_schema..."
14
14
]
15
15
ssl_mode = {
16
- source_postgres_ssl_modes_allow = {
17
- mode = " allow"
18
- }
16
+ allow = {}
19
17
}
20
18
tunnel_method = {
21
- source_postgres_ssh_tunnel_method_no_tunnel = {
22
- tunnel_method = " NO_TUNNEL"
23
- }
19
+ no_tunnel = {}
24
20
}
25
21
replication_method = {
26
- source_postgres_update_method_read_changes_using_write_ahead_log_cdc = {
27
- method = " CDC"
22
+ read_changes_using_write_ahead_log_cdc = {
28
23
publication = " ...pub..."
29
24
replication_slot = " ...slot..."
30
25
}
You can’t perform that action at this time.
0 commit comments