Dots in environment variable names

Hi,

I need to create an environment variable with a dot (.) in the name (e.g discovery.type). The Qovery UI prevents this character to be in the name. Is there a way to get around the issue?

The container I am trying to recreate in Qovery is:

  elasticsearch:
    image: docker.elastic.co/elasticsearch/elasticsearch:7.17.5
    environment:
      discovery.type: single-node
      ES_JAVA_OPTS: "-Xms256m -Xmx256m"
      ELASTIC_PASSWORD: $ELASTIC_PASSWORD
      xpack.security.enabled: $ELASTIC_SECURITY

Hello,
Actually, it is not possible to create an environment variable name with dots.

I’m not sure to fully understand your issue but regarding your code, you could set DISCOVERY_TYPE="single-node" and use $DISCOVERY_TYPE, couldn’t you?