We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#13 added support for LocalFile class. This allows us to embed authentication information in config file. For example,
out: type: bigquery auth_method: private_key project: my-proj-1234 dataset: ds1 table: ts4 auto_create_table: true schema_file: content: | { .. } p12_keyfile: base64: | aG9nZQpob2dlCmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpob2dlCmhv Z2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpob2dl CmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpo b2dlCmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9n ZQpob2dlCmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpob2dlCmhvZ2UK aG9nZQpob2dlCmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpob2dlCmhv Z2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpob2dl CmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpo b2dlCmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9nZQpob2dlCmhvZ2UKaG9nZQo= ...
This is good for us to deploy to servers because we can bundle all configuration in one file.
However, creating base64 of .p12 file needs additional work. It would be useful if it supports JSON authentication files. For example,
out: type: bigquery auth_method: json_key json_keyfile: /path/to/auth.json
or
out: type: bigquery auth_method: json_key json_keyfile: content: | { "private_key_id": "123456789", "private_key": "-----BEGIN PRIVATE KEY-----\nABCDEF", "client_email": "..." } ...
The text was updated successfully, but these errors were encountered:
@frsyuki I implemented this auth_method at #17. Do you have any advise or order about this pull-request?
If no, I'll merge it and release new version.
Sorry, something went wrong.
I implemented at #17 and merged.
Merge pull request embulk#16 from trocco-io/patch_table_with_retry
9a16dea
No branches or pull requests
#13 added support for LocalFile class. This allows us to embed authentication information in config file. For example,
This is good for us to deploy to servers because we can bundle all configuration in one file.
However, creating base64 of .p12 file needs additional work. It would be useful if it supports JSON authentication files. For example,
or
The text was updated successfully, but these errors were encountered: