How to use put_remediation_configurations method in localstack

Best Python code snippet using localstack_python

client.py

Source:client.py Github

copy

Full Screen

...108 def put_delivery_channel(self, DeliveryChannel: Dict):109 pass110 def put_evaluations(self, ResultToken: str, Evaluations: List = None, TestMode: bool = None) -> Dict:111 pass112 def put_remediation_configurations(self, RemediationConfigurations: List) -> Dict:113 pass114 def put_retention_configuration(self, RetentionPeriodInDays: int) -> Dict:115 pass116 def select_resource_config(self, Expression: str, Limit: int = None, NextToken: str = None) -> Dict:117 pass118 def start_config_rules_evaluation(self, ConfigRuleNames: List = None) -> Dict:119 pass120 def start_configuration_recorder(self, ConfigurationRecorderName: str):121 pass122 def start_remediation_execution(self, ConfigRuleName: str, ResourceKeys: List) -> Dict:123 pass124 def stop_configuration_recorder(self, ConfigurationRecorderName: str):125 pass126 def tag_resource(self, ResourceArn: str, Tags: List):...

Full Screen

Full Screen

main.py

Source:main.py Github

copy

Full Screen

...20 for j in desti:21 client_config = sess.client('config', j)22 client_config.put_config_rule(ConfigRule=i)23 if remedy.get("RemediationConfigurations"):24 client_config.put_remediation_configurations(25 RemediationConfigurations=remedy.get("RemediationConfigurations"))26 if remedy.get("RemediationConfigurations"):27 x = remedy.get('RemediationConfigurations')[0].get('TargetId')28 else:29 x = "no remediation"30 print(f"{i.get('ConfigRuleName')} rule enabled in {j} location with remediation"31 f" action {x} in same account")32def sync_across():33 with open('info.yaml') as cf:34 config = yaml.safe_load(cf)35 source = config.get("source").get("region")36 desti = config.get("destination-across-acc").get("region")37 sess_source = boto3.session.Session(aws_access_key_id=config.get('cred-source').get("id"),38 aws_secret_access_key=config.get('cred-source').get("pass"))39 sess_desti = boto3.session.Session(aws_access_key_id=config.get('cred-destination').get("id"),40 aws_secret_access_key=config.get('cred-destination').get("pass"))41 client_config_source = sess_source.client('config', source)42 config_rules = client_config_source.describe_config_rules(ConfigRuleNames=[])43 for i in config_rules.get("ConfigRules"):44 i.pop("ConfigRuleArn")45 i.pop("ConfigRuleId")46 remedy = client_config_source.describe_remediation_configurations(47 ConfigRuleNames=[i.get("ConfigRuleName")])48 if remedy.get("RemediationConfigurations"):49 remedy.get("RemediationConfigurations")[0].pop("Arn")50 for j in desti:51 client_config_desti = sess_desti.client('config', j)52 client_config_desti.put_config_rule(ConfigRule=i)53 if remedy.get("RemediationConfigurations"):54 client_config_desti.put_remediation_configurations(55 RemediationConfigurations=remedy.get("RemediationConfigurations"))56 if remedy.get("RemediationConfigurations"):57 x=remedy.get('RemediationConfigurations')[0].get('TargetId')58 else :59 x="no remediation"60 print(f"{i.get('ConfigRuleName')} rule enabled in {j} location with remediation"61 f" action {x} across account")62if __name__=="__main__":63 parser= argparse.ArgumentParser(description="""Deplying config rules from one region to other regions in same/across accounts""")64 parser.add_argument("option",type=int,help="1.for same account 2.for across accounts")65 args = parser.parse_args()66 if str(args.option) =="1":67 sync_same()68 elif str(args.option) =="2":...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run localstack automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful