How to use populate_config_env_var_names method in localstack

Best Python code snippet using localstack_python

config.py

Source:config.py Github

copy

Full Screen

...618def populate_configs(service_ports=None):619 pass620# TODO: use functools cache, instead of global variable here621SERVICE_PORTS = parse_service_ports()622def populate_config_env_var_names():623 global CONFIG_ENV_VARS624 for key, value in DEFAULT_SERVICE_PORTS.items():625 clean_key = key.upper().replace("-", "_")626 CONFIG_ENV_VARS += [627 clean_key + "_BACKEND",628 clean_key + "_PORT_EXTERNAL",629 "PROVIDER_OVERRIDE_" + clean_key,630 ]631 # create variable aliases prefixed with LOCALSTACK_ (except LOCALSTACK_HOSTNAME)632 CONFIG_ENV_VARS += [633 "LOCALSTACK_" + v for v in CONFIG_ENV_VARS if not v.startswith("LOCALSTACK_")634 ]635 CONFIG_ENV_VARS = list(set(CONFIG_ENV_VARS))636# populate env var names to be passed to the container637populate_config_env_var_names()638def service_port(service_key: str, external: bool = False) -> int:639 service_key = service_key.lower()640 if external:641 if service_key == "sqs" and SQS_PORT_EXTERNAL:642 return SQS_PORT_EXTERNAL643 if FORWARD_EDGE_INMEM:644 if service_key == "elasticsearch":645 # TODO Elasticsearch domains are a special case - we do not want to route them through646 # the edge service, as that would require too many route mappings. In the future, we647 # should integrate them with the port range for external services (4510-4530)648 return SERVICE_PORTS.get(service_key, 0)649 return get_edge_port_http()650 return SERVICE_PORTS.get(service_key, 0)651def get_protocol():...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run localstack automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful