xinbinhuang commented on a change in pull request #20: URL: https://github.com/apache/airflow-ci-infra/pull/20#discussion_r625928879
########## File path: lambdas/scale_out_runner/app.py ########## @@ -20,15 +20,21 @@ import json import logging import os +import re from typing import cast import boto3 +import requests +import yaml from chalice import BadRequestError, Chalice, ForbiddenError -from chalice.app import Request +from chalice.app import Rate, Request app = Chalice(app_name='scale_out_runner') app.log.setLevel(logging.INFO) +GITHUB_CI_YML = 'https://raw.githubusercontent.com/apache/airflow/master/.github/workflows/ci.yml' +SSM_REPO_NAME = os.getenv('SSM_REPO_NAME', 'apache/airflow') +KMS_ID = os.getenv("KMS_ID", "airflow-ci") Review comment: Do I need to change the KMS id for SSM encryption? I don't have access to KMS. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
