Hello I read this guide: Use Connectors in hybrid mode | Camunda 8 Docs.
I want to run a the bundle connector runtime locally in my machine using the docker image of camunda to connect to one cluster created in the saas saas.
I run the following command of the guide to start the bundle container using an env file:
ZEEBE_CLIENT_SECURITY_PLAINTEXT=false
ZEEBE_ADDRESS=‘xxx.dsm-1.zeebe.camunda.io:443’
ZEEBE_CLIENT_ID=‘xxx’
ZEEBE_CLIENT_SECRET=‘xxx’
ZEEBE_CLIENT_CONNECTION_MODE=CLOUD
ZEEBE_TOKEN_AUDIENCE=‘zeebe.camunda.io’
CAMUNDA_CLUSTER_ID=‘xxx’
CAMUNDA_CLUSTER_REGION=‘dsm-1’
CAMUNDA_CREDENTIALS_SCOPES=‘Zeebe,Tasklist,Operate,Optimize’
CAMUNDA_TASKLIST_BASE_URL=‘https://dsm-1.tasklist.camunda.io/xxx’
CAMUNDA_OPTIMIZE_BASE_URL=‘https://dsm-1.optimize.camunda.io/xxx’
CAMUNDA_OPERATE_BASE_URL=‘https://dsm-1.operate.camunda.io/xxx’
CAMUNDA_OAUTH_URL=‘https://login.cloud.camunda.io/oauth/token’
CONNECTOR_HTTP_REST_TYPE=‘io.camunda:http-json:local’
ZEEBE_AUTHORIZATION_SERVER_URL=‘https://login.cloud.camunda.io/oauth/token’
I got the error:
Caused by: java.net.MalformedURLException: no protocol: ‘https://login.cloud.camunda.io/oauth/token’
In the variable:
ZEEBE_AUTHORIZATION_SERVER_URL=‘https://login.cloud.camunda.io/oauth/token’
Also If i run using exactly the same command that the guide, I got the error:
Could Somebody help me to undestand my mystake.
Thank you.
Maxi