@@ -40,8 +40,8 @@ def _convert_to_env_list(entries: list[Any]) -> str:
4040
4141 environment_variables = [
4242 f"DOCKER_IMAGE_TAG={ app_settings .CLUSTERS_KEEPER_COMPUTATIONAL_BACKEND_DOCKER_IMAGE_TAG } " ,
43- f"EC2_CLUSTERS_KEEPER_ACCESS_KEY_ID ={ app_settings .CLUSTERS_KEEPER_EC2_ACCESS .EC2_ACCESS_KEY_ID } " ,
44- f"EC2_CLUSTERS_KEEPER_ENDPOINT ={ app_settings .CLUSTERS_KEEPER_EC2_ACCESS .EC2_ENDPOINT } " ,
43+ f"CLUSTERS_KEEPER_EC2_ACCESS_KEY_ID ={ app_settings .CLUSTERS_KEEPER_EC2_ACCESS .EC2_ACCESS_KEY_ID } " ,
44+ f"CLUSTERS_KEEPER_EC2_ENDPOINT ={ app_settings .CLUSTERS_KEEPER_EC2_ACCESS .EC2_ENDPOINT } " ,
4545 f"WORKERS_EC2_INSTANCES_ALLOWED_TYPES={ _convert_to_env_list (app_settings .CLUSTERS_KEEPER_WORKERS_EC2_INSTANCES .WORKERS_EC2_INSTANCES_ALLOWED_TYPES )} " ,
4646 f"WORKERS_EC2_INSTANCES_AMI_ID={ app_settings .CLUSTERS_KEEPER_WORKERS_EC2_INSTANCES .WORKERS_EC2_INSTANCES_AMI_ID } " ,
4747 f"WORKERS_EC2_INSTANCES_CUSTOM_BOOT_SCRIPTS={ _convert_to_env_list (app_settings .CLUSTERS_KEEPER_WORKERS_EC2_INSTANCES .WORKERS_EC2_INSTANCES_CUSTOM_BOOT_SCRIPTS )} " ,
@@ -52,8 +52,8 @@ def _convert_to_env_list(entries: list[Any]) -> str:
5252 f"WORKERS_EC2_INSTANCES_SECURITY_GROUP_IDS={ _convert_to_env_list (app_settings .CLUSTERS_KEEPER_WORKERS_EC2_INSTANCES .WORKERS_EC2_INSTANCES_SECURITY_GROUP_IDS )} " ,
5353 f"WORKERS_EC2_INSTANCES_SUBNET_ID={ app_settings .CLUSTERS_KEEPER_WORKERS_EC2_INSTANCES .WORKERS_EC2_INSTANCES_SUBNET_ID } " ,
5454 f"WORKERS_EC2_INSTANCES_TIME_BEFORE_TERMINATION={ app_settings .CLUSTERS_KEEPER_WORKERS_EC2_INSTANCES .WORKERS_EC2_INSTANCES_TIME_BEFORE_TERMINATION } " ,
55- f"EC2_CLUSTERS_KEEPER_REGION_NAME ={ app_settings .CLUSTERS_KEEPER_EC2_ACCESS .EC2_REGION_NAME } " ,
56- f"EC2_CLUSTERS_KEEPER_SECRET_ACCESS_KEY ={ app_settings .CLUSTERS_KEEPER_EC2_ACCESS .EC2_SECRET_ACCESS_KEY } " ,
55+ f"CLUSTERS_KEEPER_EC2_REGION_NAME ={ app_settings .CLUSTERS_KEEPER_EC2_ACCESS .EC2_REGION_NAME } " ,
56+ f"CLUSTERS_KEEPER_EC2_SECRET_ACCESS_KEY ={ app_settings .CLUSTERS_KEEPER_EC2_ACCESS .EC2_SECRET_ACCESS_KEY } " ,
5757 f"LOG_LEVEL={ app_settings .LOG_LEVEL } " ,
5858 ]
5959
0 commit comments