Best Python code snippet using localstack_python
CreateIamUser.py
Source:CreateIamUser.py
...12 'guppal@vabnix.com', 'hhoshyar@vabnix.com', 'hnguyen@vabnix.com', 'jsmiley@vabnix.com',13 'jstager@vabnix.com', 'kfarat@vabnix.com', 'mchugh@vabnix.com', 'mconte@vabnix.com',14 'mfullom@vabnix.com', 'mlemieux@vabnix.com', 'msimmons@vabnix.com', 'msueping@vabnix.com',15 'nkhosla@vabnix.com', 'oasenime@vabnix.com', 'rawasthi@vabnix.com', 'rbhandari@vabnix.com']16def update_login_profile(username):17 print("----Updating Login Profile -----")18 try:19 response = client.get_login_profile(UserName=username)20 except Exception as e:21 if e.response['ResponseMetadata']['HTTPStatusCode'] == 404:22 print('User {} has no login profile'.format(username))23 print('Creating profile...')24 create_response = client.create_login_profile(25 UserName=username,26 Password='LoneWolf!1',27 PasswordResetRequired=True28 )29 print(create_response)30def attach_user_policy(username):31 print("--- Attaching default policies ----")32 response = client.attach_user_policy(33 UserName=username,34 PolicyArn='arn:aws:iam::aws:policy/IAMUserChangePassword'35 )36def create_user_account():37 print("---- Creating User account -----")38 for username in UserToAdd:39 if username not in ExistingUser:40 response = client.create_user(41 UserName=username42 )43 update_login_profile(username)44 attach_user_policy(username)45pull_existing_user()...
iam_user_force_password_change.py
Source:iam_user_force_password_change.py
...9def run_action(boto_session,rule,entity,params):10 username = entity['name']11 iam_client = boto_session.client('iam')12 try:13 result = iam_client.update_login_profile(14 UserName=username,15 PasswordResetRequired=True16 )17 18 responseCode = result['ResponseMetadata']['HTTPStatusCode']19 if responseCode >= 400:20 text_output = "Unexpected error: %s \n" % str(result)21 else:22 text_output = "User %s updated. Their password will have to be changed at their next login.\n" % username23 24 except ClientError as e:25 text_output = "Unexpected error: %s \n" % e26 27 return text_output
update-login-profile.py
Source:update-login-profile.py
2import pprint3aws_session = boto3.Session(profile_name="jump-sts")4iam_client = aws_session.client("iam")5pp = pprint.PrettyPrinter(indent=2)6result = iam_client.update_login_profile(UserName="barclays",7 Password="ChangeM3!",8 PasswordResetRequired=True)...
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.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!