Bigquery Config Fix (#4275)

This commit is contained in:
Mayur Singal 2022-04-20 16:47:00 +05:30 committed by GitHub
parent 093a146724
commit 596f3ed9ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 24 deletions

View File

@ -6,19 +6,26 @@
"config": {
"type": "BigQuery",
"enablePolicyTagImport": true,
"credentialsType": "service_account",
"projectID": "projectID",
"privateKeyId": "privateKeyId",
"privateKey": "privateKey",
"clientEmail": "clientEmail",
"clientId": "clientId",
"authURI": "https://accounts.google.com/o/oauth2/auth",
"tokenURI": "https://oauth2.googleapis.com/token",
"projectId":"project_id",
"credentials":{
"gcsConfig":{
"type":"service_account",
"projectId": "project_id",
"privateKeyId": "private_key_id",
"privateKey": "private_key",
"clientEmail": "gcpuser@project_id.iam.gserviceaccount.com",
"clientId": "client_id",
"authUri": "https://accounts.google.com/o/oauth2/auth",
"tokenUri": "https://oauth2.googleapis.com/token",
"authProviderX509CertUrl": "https://www.googleapis.com/oauth2/v1/certs",
"clientX509CertUrl": "clientX509CertUrl"
}
}
}
},
"sourceConfig": {"config": {"enableDataProfiler": false}}
"sourceConfig": {"config": {
"enableDataProfiler": false
}}
},
"sink": {
"type": "metadata-rest",

View File

@ -5,20 +5,20 @@
"serviceConnection": {
"config": {
"type": "BigQuery",
"projectID": "project_id",
"enablePolicyTagImport": true,
"connectionOptions": {
"credentials": {
"type": "service_account",
"project_id": "project_id",
"private_key_id": "private_key_id",
"private_key": "private_key",
"client_email": "gcpuser@project_id.iam.gserviceaccount.com",
"client_id": "client_id",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_x509_cert_url": ""
"projectId":"project_id",
"credentials":{
"gcsConfig":{
"type":"service_account",
"projectId": "project_id",
"privateKeyId": "private_key_id",
"privateKey": "private_key",
"clientEmail": "gcpuser@project_id.iam.gserviceaccount.com",
"clientId": "client_id",
"authUri": "https://accounts.google.com/o/oauth2/auth",
"tokenUri": "https://oauth2.googleapis.com/token",
"authProviderX509CertUrl": "https://www.googleapis.com/oauth2/v1/certs",
"clientX509CertUrl": ""
}
}
}