Created
March 23, 2015 21:10
-
-
Save cap10morgan/a5f1d3abbe7e462a64ed to your computer and use it in GitHub Desktop.
CoreOS in a VPC CloudFormation Template
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
{ | |
"AWSTemplateFormatVersion": "2010-09-09", | |
"Description": "CoreOS on EC2: http://coreos.com/docs/running-coreos/cloud-providers/ec2/", | |
"Mappings" : { | |
"RegionMap" : { | |
"eu-central-1" : { | |
"AMI" : "ami-0e300d13" | |
}, | |
"ap-northeast-1" : { | |
"AMI" : "ami-af28dcaf" | |
}, | |
"sa-east-1" : { | |
"AMI" : "ami-2354ec3e" | |
}, | |
"ap-southeast-2" : { | |
"AMI" : "ami-b9b5c583" | |
}, | |
"ap-southeast-1" : { | |
"AMI" : "ami-f80b3aaa" | |
}, | |
"us-east-1" : { | |
"AMI" : "ami-323b195a" | |
}, | |
"us-west-2" : { | |
"AMI" : "ami-0789a437" | |
}, | |
"us-west-1" : { | |
"AMI" : "ami-8dd533c9" | |
}, | |
"eu-west-1" : { | |
"AMI" : "ami-55950a22" | |
} | |
} | |
}, | |
"Parameters": { | |
"InstanceType" : { | |
"Description" : "EC2 HVM instance type (m3.medium, etc).", | |
"Type" : "String", | |
"Default" : "m3.medium", | |
"ConstraintDescription" : "Must be a valid EC2 HVM instance type." | |
}, | |
"VpcId": { | |
"Type": "String", | |
"Default": "vpc-xxxxxxxx", | |
"Description": "VPC ID to launch instances in." | |
}, | |
"Subnets": { | |
"Type": "CommaDelimitedList", | |
"Default": "subnet-aaaaaaaa,subnet-bbbbbbbb", | |
"Description": "VPC subnets to launch instances into." | |
}, | |
"ClusterSize": { | |
"Default": "3", | |
"MinValue": "3", | |
"MaxValue": "12", | |
"Description": "Number of nodes in cluster (3-12).", | |
"Type": "Number" | |
}, | |
"DiscoveryURL": { | |
"Description": "An unique etcd cluster discovery URL. Grab a new token from https://discovery.etcd.io/new", | |
"Type": "String" | |
}, | |
"AdvertisedIPAddress": { | |
"Description": "Use 'private' if your etcd cluster is within one region or 'public' if it spans regions or cloud providers.", | |
"Default": "private", | |
"AllowedValues": ["private", "public"], | |
"Type": "String" | |
}, | |
"AllowSSHFrom": { | |
"Description": "The net block (CIDR) that SSH is available to.", | |
"Default": "0.0.0.0/0", | |
"Type": "String" | |
}, | |
"KeyPair" : { | |
"Description" : "The name of an EC2 Key Pair to allow SSH access to the instance.", | |
"Type" : "String" | |
} | |
}, | |
"Resources": { | |
"CoreOSSecurityGroup": { | |
"Type": "AWS::EC2::SecurityGroup", | |
"Properties": { | |
"GroupDescription": "CoreOS SecurityGroup", | |
"VpcId": { "Ref": "VpcId" }, | |
"SecurityGroupIngress": [ | |
{"IpProtocol": "tcp", "FromPort": "22", "ToPort": "22", "CidrIp": {"Ref": "AllowSSHFrom"}} | |
] | |
} | |
}, | |
"Ingress4001": { | |
"Type": "AWS::EC2::SecurityGroupIngress", | |
"Properties": { | |
"GroupId": {"Fn::GetAtt": [ "CoreOSSecurityGroup", "GroupId" ]}, "IpProtocol": "tcp", "FromPort": "4001", "ToPort": "4001", "SourceSecurityGroupId": { | |
"Fn::GetAtt" : [ "CoreOSSecurityGroup", "GroupId" ] | |
} | |
} | |
}, | |
"Ingress7001": { | |
"Type": "AWS::EC2::SecurityGroupIngress", | |
"Properties": { | |
"GroupId": {"Fn::GetAtt": [ "CoreOSSecurityGroup", "GroupId" ]}, "IpProtocol": "tcp", "FromPort": "7001", "ToPort": "7001", "SourceSecurityGroupId": { | |
"Fn::GetAtt" : [ "CoreOSSecurityGroup", "GroupId" ] | |
} | |
} | |
}, | |
"CoreOSServerAutoScale": { | |
"Type": "AWS::AutoScaling::AutoScalingGroup", | |
"Properties": { | |
"AvailabilityZones": {"Fn::GetAZs": ""}, | |
"VPCZoneIdentifier": {"Ref": "Subnets"}, | |
"LaunchConfigurationName": {"Ref": "CoreOSServerLaunchConfig"}, | |
"MinSize": "3", | |
"MaxSize": "12", | |
"DesiredCapacity": {"Ref": "ClusterSize"}, | |
"Tags": [ | |
{"Key": "Name", "Value": { "Ref" : "AWS::StackName" }, "PropagateAtLaunch": true} | |
] | |
} | |
}, | |
"CoreOSServerLaunchConfig": { | |
"Type": "AWS::AutoScaling::LaunchConfiguration", | |
"Properties": { | |
"ImageId" : { "Fn::FindInMap" : [ "RegionMap", { "Ref" : "AWS::Region" }, "AMI" ]}, | |
"InstanceType": {"Ref": "InstanceType"}, | |
"KeyName": {"Ref": "KeyPair"}, | |
"SecurityGroups": [{"Ref": "CoreOSSecurityGroup"}], | |
"UserData" : { "Fn::Base64": | |
{ "Fn::Join": [ "", [ | |
"#cloud-config\n\n", | |
"coreos:\n", | |
" etcd:\n", | |
" discovery: ", { "Ref": "DiscoveryURL" }, "\n", | |
" addr: $", { "Ref": "AdvertisedIPAddress" }, "_ipv4:4001\n", | |
" peer-addr: $", { "Ref": "AdvertisedIPAddress" }, "_ipv4:7001\n", | |
" units:\n", | |
" - name: etcd.service\n", | |
" command: start\n", | |
" - name: fleet.service\n", | |
" command: start\n" | |
] ] | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment