{
    "connector.class": "{{ env['CONNECTOR_CLASS'] }}",
    "tasks.max": "{{ env['MAX_TASKS'] }}",
    "key.converter": "{{ env['CONNECT_KEY_CONVERTER'] }}",
    "value.converter": "{{ env['CONNECT_VALUE_CONVERTER'] }}",
    "value.converter.schemas.enable": "{{ env['CONNECT_SCHEMAS_ENABLE'] }}",
    "topics": "{{ env['KAFKA_TOPICS'] }}",
    "camel.source.path.apiName": "DATA",
    "camel.source.endpoint.applicationName": "{{ env['GCP_APP_NAME'] }}",
    "camel.source.endpoint.delay": "60000",
    "camel.source.endpoint.scopes": "https://www.googleapis.com/auth/spreadsheets.readonly",
    "camel.source.endpoint.spreadsheetId": "{{ env['SPREADSHEET_ID'] }}",
    "camel.source.endpoint.valueRenderOption": "{{ env['VALUE_RENDER_OPTION'] }}",
    "camel.source.endpoint.range": "{{ env['SPREADSHEET_RANGE'] }}",
    {% if env['CONNECTOR_SPLIT_RESULTS'] %}
    "camel.source.endpoint.splitResults": "{{ env['CONNECTOR_SPLIT_RESULTS'] }}",
    {% endif %}
    "camel.source.endpoint.majorDimension": "{{ env['SPREADSHEET_READ_DIMENSION'] }}",
    "camel.source.endpoint.runLoggingLevel": "{{ env['CONNECTOR_LOG_LEVEL'] }}",
    "camel.source.endpoint.clientId": "${aws:{{ env['Environment'] }}/{{ env['SERVICE_NAME'] }}/google_api_credentials:GOOGLE_CLIENT_ID}",
    "camel.source.endpoint.clientSecret": "${aws:{{ env['Environment'] }}/{{ env['SERVICE_NAME'] }}/google_api_credentials:GOOGLE_CLIENT_SECRET}",
    "camel.source.endpoint.accessToken": "${aws:{{ env['Environment'] }}/{{ env['SERVICE_NAME'] }}/google_api_credentials:GOOGLE_OAUTH2_ACCESS_TOKEN}",
    "camel.source.endpoint.refreshToken": "${aws:{{ env['Environment'] }}/{{ env['SERVICE_NAME'] }}/google_api_credentials:GOOGLE_OAUTH2_REFRESH_TOKEN}",
    "config.providers":"aws",
    "config.providers.aws.class": "io.lenses.connect.secrets.providers.AWSSecretProvider",
    "config.providers.aws.param.aws.auth.method": "default",
    "config.providers.aws.param.aws.access.key": "dummy-client-key",
    "config.providers.aws.param.aws.secret.key": "dummy-secret-key",
    "config.providers.aws.param.aws.region": "{{ env['AWS_REGION'] }}"
}
