We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1daba54 commit bdfe34bCopy full SHA for bdfe34b
scripts/aws/ec2.py
@@ -61,6 +61,8 @@ def __add_defaults(configs: Dict[str, any]) -> OperatorConfig:
61
configs.setdefault("enclave_memory_mb", 24576)
62
configs.setdefault("enclave_cpu_count", 6)
63
configs.setdefault("debug_mode", False)
64
+ configs.setdefault("core_base_url", "https://core.uidapi.com" if configs["environment"] == "prod" else "https://core-integ.uidapi.com")
65
+ configs.setdefault("optout_base_url", "https://optout.uidapi.com" if configs["environment"] == "prod" else "https://optout-integ.uidapi.com")
66
return configs
67
68
@staticmethod
0 commit comments