Created
April 19, 2019 12:31
-
-
Save hinchliff/64cae9120a248c6e3ddc8b10ec3bd157 to your computer and use it in GitHub Desktop.
Run a Cloud Custodian policy file from a Python script. Most useful perhaps to be able to run Cloud Custodian from AWS Lambda.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import logging | |
from c7n.commands import run | |
from c7n.config import Config | |
logger = logging.getLogger() | |
logger.setLevel(logging.INFO) | |
# Capture our current directory | |
THIS_DIR = os.path.dirname(os.path.abspath(__file__)) | |
OUT_DIR = '/tmp' | |
assumed_role = 'arn:aws:iam::{{ account_id }}:{{ target_role }}' | |
filename = 'my-policy.yml' | |
default_c7n_config = { | |
'skip-validation': True, | |
'vars': None, | |
'debug': True, | |
'assume': assumed_role, | |
'output_dir': os.path.join(OUT_DIR, 'out'), | |
'region': 'us-east-1', | |
'configs': [filename] | |
} | |
run_config = Config.empty(**default_c7n_config) | |
logger.info('Running policy: ' + filename) | |
run(run_config) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
try switching the dict parameters to a list with a sequential one. Ex:
`
import c7n_org.cli
commands_ex = [
"--config", "cloudcustodian/c7n-org-config/accounts.yml",
"--use", "cloudcustodian/aws/policies/s3-check-buckets-public",
"--output-dir", "output",
"--region", "sa-east-1"
]
test = c7n_org.cli
if name == "main":
ab = test.run.main(args=commands_ex, standalone_mode=True, prog_name="run")
`