Skip to content

Commit

Permalink
billing,compute: fix credentials_json escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
endorama committed Jun 9, 2022
1 parent ef2215e commit fa4dc99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ project_id: {{project_id}}
credentials_file_path: {{credentials_file}}
{{/if}}
{{#if credentials_json}}
credentials_json: {{credentials_json}}
credentials_json: '{{credentials_json}}'
{{/if}}
dataset_id: {{dataset_id}}
table_pattern: {{table_pattern}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ project_id: {{project_id}}
credentials_file_path: {{credentials_file}}
{{/if}}
{{#if credentials_json}}
credentials_json: {{credentials_json}}
credentials_json: '{{credentials_json}}'
{{/if}}
{{#if region}}
region: {{region}}
Expand Down

0 comments on commit fa4dc99

Please sign in to comment.