Skip to content

Commit

Permalink
source-googlesheet: Service account json should be secret (airbytehq#…
Browse files Browse the repository at this point in the history
…9356)

* Service account json should be secret

* Bumpversion of connector

* bumpversion
  • Loading branch information
ChristopheDuong authored Jan 10, 2022
1 parent 0ee4d09 commit 0c57100
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@
- name: Google Sheets
sourceDefinitionId: 71607ba1-c0ac-4799-8049-7f4b90dd50f7
dockerRepository: airbyte/source-google-sheets
dockerImageTag: 0.2.7
dockerImageTag: 0.2.8
documentationUrl: https://docs.airbyte.io/integrations/sources/google-sheets
icon: google-sheets.svg
sourceType: file
Expand Down
5 changes: 3 additions & 2 deletions airbyte-config/init/src/main/resources/seed/source_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2583,7 +2583,7 @@
oauthFlowOutputParameters:
- - "access_token"
- - "refresh_token"
- dockerImage: "airbyte/source-google-sheets:0.2.7"
- dockerImage: "airbyte/source-google-sheets:0.2.8"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/google-sheets"
connectionSpecification:
Expand Down Expand Up @@ -2639,6 +2639,7 @@
service_account_info:
type: "string"
description: "The JSON key of the service account to use for authorization"
airbyte_secret: true
examples:
- "{ \"type\": \"service_account\", \"project_id\": YOUR_PROJECT_ID,\
\ \"private_key_id\": YOUR_PRIVATE_KEY, ... }"
Expand All @@ -2650,7 +2651,7 @@
oauth2Specification:
rootObject:
- "credentials"
- 0
- "0"
oauthFlowInitParameters:
- - "client_id"
- - "client_secret"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ COPY google_sheets_source ./google_sheets_source
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.2.7
LABEL io.airbyte.version=0.2.8
LABEL io.airbyte.name=airbyte/source-google-sheets

Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
"service_account_info": {
"type": "string",
"description": "The JSON key of the service account to use for authorization",
"airbyte_secret": true,
"examples": [
"{ \"type\": \"service_account\", \"project_id\": YOUR_PROJECT_ID, \"private_key_id\": YOUR_PRIVATE_KEY, ... }"
]
Expand Down

0 comments on commit 0c57100

Please sign in to comment.