in: | |
type: mysql | |
host: ${host} | |
user: ${user} | |
password: '${password}' | |
database: ${database} | |
table: ${table} | |
out: | |
type: bigquery | |
mode: replace | |
auth_method: json_key | |
json_keyfile: ./my-bigquery.json | |
project: ${project_id} | |
dataset: ${dataset} | |
auto_create_table: true | |
table: ${table} | |
allow_quoted_newlines: true |
in: | |
type: mysql | |
host: ${host} | |
user: ${user} | |
password: '${password}' | |
database: ${database} | |
query: | | |
select id,user_id,product_id from orders | |
out: | |
type: bigquery | |
mode: replace | |
auth_method: json_key | |
json_keyfile: ./my-bigquery.json | |
project: ${project_id} | |
dataset: ${dataset} | |
auto_create_table: true | |
table: orders | |
allow_quoted_newlines: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
hiroyuki-sato commentedJun 23, 2017
•
edited
ブログ拝見しました。
Digdagクライアントでもシークレット使えるはずですが
これじゃダメですか?
http://docs.digdag.io/command_reference.html#secrets
追記
もしかして、ローカルモードではなく、スケジューラでシークレットが使えないと言う話ですか?