Camunda-platform-7-rest-client-spring-boot default url doesn't change the url

Hello everyone,
I started using this https://github.com/camunda-community-hub/camunda-platform-7-rest-client-spring-boot client for working with a standalone camunda engine and read the documentation about configuring the feign client. There was written you should change the url with:

feign:
  client:
    config:
      default:
        url: "http://localhost:8083/engine-rest/"

But if I use it, it doesnt overwrite the url and still uses Port 8080. If I change it in the application.yml to this:

feign.client.config.deployment.url: http://localhost:8112/engine-rest

It works but obviously only for the deployment url and I dont want to overwrite every single one of them this way. Does anyone know how to fix it, or other ways to set a default value for the urls?