Source code for examples.ELBSample

# Converted from ELBSample.template located at:
# http://aws.amazon.com/cloudformation/aws-cloudformation-templates/

import troposphere.ec2 as ec2
import troposphere.elasticloadbalancing as elb
from troposphere import (
    Base64,
    FindInMap,
    GetAtt,
    GetAZs,
    Join,
    Output,
    Parameter,
    Ref,
    Template,
)


[docs]def AddAMI(template): template.add_mapping( "RegionMap", { "us-east-1": {"AMI": "ami-6411e20d"}, "us-west-1": {"AMI": "ami-c9c7978c"}, "us-west-2": {"AMI": "ami-fcff72cc"}, "eu-west-1": {"AMI": "ami-37c2f643"}, "ap-southeast-1": {"AMI": "ami-66f28c34"}, "ap-northeast-1": {"AMI": "ami-9c03a89d"}, "sa-east-1": {"AMI": "ami-a039e6bd"}, }, )
[docs]def main(): template = Template() template.set_version("2010-09-09") template.set_description( "AWS CloudFormation Sample Template: ELB with 2 EC2 instances" ) AddAMI(template) # Add the Parameters keyname_param = template.add_parameter( Parameter( "KeyName", Type="String", Default="mark", Description="Name of an existing EC2 KeyPair to " "enable SSH access to the instance", ) ) template.add_parameter( Parameter( "InstanceType", Type="String", Description="WebServer EC2 instance type", Default="m1.small", AllowedValues=[ "t1.micro", "m1.small", "m1.medium", "m1.large", "m1.xlarge", "m2.xlarge", "m2.2xlarge", "m2.4xlarge", "c1.medium", "c1.xlarge", "cc1.4xlarge", "cc2.8xlarge", "cg1.4xlarge", ], ConstraintDescription="must be a valid EC2 instance type.", ) ) webport_param = template.add_parameter( Parameter( "WebServerPort", Type="String", Default="8888", Description="TCP/IP port of the web server", ) ) # Define the instance security group instance_sg = template.add_resource( ec2.SecurityGroup( "InstanceSecurityGroup", GroupDescription="Enable SSH and HTTP access on the inbound port", SecurityGroupIngress=[ ec2.SecurityGroupRule( IpProtocol="tcp", FromPort="22", ToPort="22", CidrIp="0.0.0.0/0", ), ec2.SecurityGroupRule( IpProtocol="tcp", FromPort=Ref(webport_param), ToPort=Ref(webport_param), CidrIp="0.0.0.0/0", ), ], ) ) # Add the web server instances web_instances = [] for name in ("Ec2Instance1", "Ec2Instance2"): instance = template.add_resource( ec2.Instance( name, SecurityGroups=[Ref(instance_sg)], KeyName=Ref(keyname_param), InstanceType=Ref("InstanceType"), ImageId=FindInMap("RegionMap", Ref("AWS::Region"), "AMI"), UserData=Base64(Ref(webport_param)), ) ) web_instances.append(instance) elasticLB = template.add_resource( elb.LoadBalancer( "ElasticLoadBalancer", AccessLoggingPolicy=elb.AccessLoggingPolicy( EmitInterval=5, Enabled=True, S3BucketName="logging", S3BucketPrefix="myELB", ), AvailabilityZones=GetAZs(""), ConnectionDrainingPolicy=elb.ConnectionDrainingPolicy( Enabled=True, Timeout=300, ), CrossZone=True, Instances=[Ref(r) for r in web_instances], Listeners=[ elb.Listener( LoadBalancerPort="80", InstancePort=Ref(webport_param), Protocol="HTTP", ), ], HealthCheck=elb.HealthCheck( Target=Join("", ["HTTP:", Ref(webport_param), "/"]), HealthyThreshold="3", UnhealthyThreshold="5", Interval="30", Timeout="5", ), ) ) template.add_output( Output( "URL", Description="URL of the sample website", Value=Join("", ["http://", GetAtt(elasticLB, "DNSName")]), ) ) print(template.to_json())
if __name__ == "__main__": main()