You want to differentiate the connections of the different applications, is that right?
Currently, an environment instance creates connections with names like rabbitmq-stream-locator-0, rabbitmq-stream-producer-0, rabbitmq-stream-consumer-0, etc. Depending on the needs, it will create new connections and the sequences at the end of the names will increment (rabbitmq-stream-locator-1, etc).
You'd like to specify maybe an ID for the environment instance and this ID would be used as a prefix in the connection names? So the connection names could be my-first-app-locator-0, my-first-app-producer-0, my-first-app-consumer-0 when the ID is set to "my-first-app" on the first environment instance and my-second-app-locator-0, my-second-app-producer-0, my-second-app-consumer-0 when the ID is set to "my-second-app" on the second environment instance. Does that sound OK?