This file contains 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
def lambda_handler(event, context): | |
log.info(" evaluating tags of ec2 instance") | |
if not event: | |
log.info("event is not valid") | |
else: | |
evaluate_ec2_instance(ec2_client, event) |
This file contains 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
def evaluate_ec2_instance(ec2_client, event): | |
instance_id = event['detail']['instance-id'] | |
instance_state = event['detail']['state'] | |
''' | |
only perform this evaluation rule when starting an new instance | |
check if instance state is pending then try to perfrom evaluation | |
''' | |
if instance_state != 'pending': | |
log.info('current state : ' + instance_state) |
This file contains 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
def validate_tag_name(tags: List[str]): | |
required_tag_names: Sequence[str] = ['environment', 'owner', 'projectName', 'costCentre'] | |
is_valid = True | |
for required_tag in required_tag_names: | |
if required_tag not in tags: | |
is_valid = False | |
break | |
return is_valid |
This file contains 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
def shutdown_ec2_instance(ec2_client, instanceId): | |
log.info("shutting down instance-id :" + instanceId) | |
ec2_client.terminate_instances( | |
InstanceIds=[ | |
instanceId | |
] | |
) |
This file contains 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
AWSTemplateFormatVersion: 2010-09-09 | |
Transform: 'AWS::Serverless-2016-10-31' | |
#Parameters: | |
# LambdaExecutionRole: | |
Resources: | |
ruleEvaluationDev: | |
Type: 'AWS::Serverless::Function' | |
Properties: | |
FunctionName: 'cost-controller-function' |
This file contains 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
#!/usr/bin/env bash | |
bucket_name=joey-my-sam-app | |
project_dir=$HOME/working/cloud-computing/lambda-demos | |
# packaging application | |
sam package \ | |
--output-template-file $project_dir/output/packaged.yaml \ | |
--s3-bucket $bucket_name > /dev/null |
OlderNewer