def __init__()

in functions/source/c1cconnectorapi.py [0:0]


    def __init__(self, api_key):
        self.base_url = "https://{region}-api.cloudconformity.com/v1".format(
            region=os.environ["ConformityRegionEndpoint"]
        )
        self.api_key = api_key
        self.headers = {
            "Content-Type": "application/vnd.api+json",
            "Authorization": f"ApiKey {api_key}",
        }
        self.external_id = ""
        self.http = urllib3.PoolManager()