Skip to content

Commit

Permalink
jdbc_url -> url
Browse files Browse the repository at this point in the history
  • Loading branch information
yruchin committed Oct 15, 2024
1 parent d72db50 commit bc0f531
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions mysql/inventory.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
data_sources:
default_source:
jdbc_url: jdbc:mysql://localhost:6000/sakila
url: jdbc:mysql://localhost:6000/sakila
user:
type: raw
value: root
password:
type: raw
value: admin
default_target:
jdbc_url: jdbc:mysql://localhost:6001/sakila
url: jdbc:mysql://localhost:6001/sakila
user:
type: raw
value: root
Expand Down
4 changes: 2 additions & 2 deletions postgres/inventory.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
data_sources:
default_source:
jdbc_url: jdbc:postgresql://localhost:6000/postgres
url: jdbc:postgresql://localhost:6000/postgres
user:
type: raw
value: postgres
password:
type: raw
value: postgres
default_target:
jdbc_url: jdbc:postgresql://localhost:6001/postgres
url: jdbc:postgresql://localhost:6001/postgres
user:
type: raw
value: postgres
Expand Down
4 changes: 2 additions & 2 deletions vault/inventory_dynamic_users.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
data_sources:
default_source:
jdbc_url: jdbc:postgresql://input_db:5432/postgres
url: jdbc:postgresql://input_db:5432/postgres
user:
type: vault
storage: database
Expand All @@ -12,7 +12,7 @@ data_sources:
path: creds/postgres-source-dynamic-role
secret: password
default_target:
jdbc_url: jdbc:postgresql://output_db:5432/postgres
url: jdbc:postgresql://output_db:5432/postgres
user:
type: vault
storage: database
Expand Down
4 changes: 2 additions & 2 deletions vault/inventory_simple_secret.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
data_sources:
default_source:
jdbc_url: jdbc:postgresql://input_db:5432/postgres
url: jdbc:postgresql://input_db:5432/postgres
user:
type: vault
storage: secret
Expand All @@ -14,7 +14,7 @@ data_sources:
versioned: true
secret: password
default_target:
jdbc_url: jdbc:postgresql://output_db:5432/postgres
url: jdbc:postgresql://output_db:5432/postgres
user:
type: vault
storage: secret
Expand Down
4 changes: 2 additions & 2 deletions vault/inventory_static_users.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
data_sources:
default_source:
jdbc_url: jdbc:postgresql://input_db:5432/postgres
url: jdbc:postgresql://input_db:5432/postgres
user:
type: vault
storage: database
Expand All @@ -12,7 +12,7 @@ data_sources:
path: static-creds/postgres-source-static-role
secret: password
default_target:
jdbc_url: jdbc:postgresql://output_db:5432/postgres
url: jdbc:postgresql://output_db:5432/postgres
user:
type: vault
storage: database
Expand Down

0 comments on commit bc0f531

Please sign in to comment.