NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

{
"Description" : "VPC 3 public subnets, 6 private subnets, and an autoscale group for NAT.",

"Parameters" : {
"KeyName": {
"Description" : "Name of existing keypair for access to the instance",
"Type": "String"
},
"VpcName": {
"Description" : "Name for the VPC",
"Type": "String"
},
"VpcCidrBlock": {
"Description" : "First two octets to use for the CIDR address range of this VPC",
"Type": "String",
"Default" : "10.100",
"MinLength": "4",
"MaxLength": "7",
"AllowedPattern": "(\d{1,3})\.(\d{1,3})",
"ConstraintDescription": "must be dot separated prefix in the form x.y"
},
"NatImage": {
"Description" : "AMI to use for the NAT instance",
"Type": "String",
"MinLength": "12",
"MaxLength": "12",
"AllowedPattern": "ami-(\w{8})",
"ConstraintDescription": "must be a valid AMI ID of the form ami-abcd1234"
}
},
"Resources": {
"NatAsgLaunchConfiguration": {
"Type" : "AWS::AutoScaling::LaunchConfiguration",
"DependsOn": "VPCGatewayAttachment",
"Properties" : {
"AssociatePublicIpAddress" : true,
"EbsOptimized" : false,
"IamInstanceProfile" : "arn:aws:iam::797429411814:instance-profile/NAT",
"ImageId" : { "Ref": "NatImage" },
"InstanceType" : "t2.small",
"KeyName" : { "Ref": "KeyName" },
"SecurityGroups" : [ { "Ref": "NatSG" }],
"UserData" : { "Fn::Base64" : {
"Fn::Join": [
"",
[
"#!/bin/bash -xn",
"exec > /tmp/userdata.log 2>&1n",
"/bin/bash /usr/local/bin/ha-nat.shn"
]
]
}
}
}
},
"NatASG": {
"Type" : "AWS::AutoScaling::AutoScalingGroup",
"Properties" : {
"AvailabilityZones" : [ "us-west-2a", "us-west-2b", "us-west-2c" ],
"Cooldown" : "30",
"DesiredCapacity" : "1",
"HealthCheckGracePeriod" : "30",
"HealthCheckType" : "EC2",
"LaunchConfigurationName" : { "Ref": "NatAsgLaunchConfiguration"},
"MaxSize" : "1",
"MinSize" : "1",
"Tags" : [ {
"Key" : "Name",
"Value" : { "Fn::Join": [ "-", [ { "Ref": "VpcName" }, "NAT"] ] },
"PropagateAtLaunch" : "true"
}],
"VPCZoneIdentifier" : [
{ "Ref": "PublicA" },
{ "Ref": "PublicB" },
{ "Ref": "PublicC" }
]
}
},
"NatDNSIngress": {
"Properties": {
"CidrIp": {
"Fn::Join" : [ ".", [ { "Ref": "VpcCidrBlock" }, "0", "0/24" ] ]
},
"FromPort": "53",
"GroupId": {
"Ref": "NatSG"
},
"IpProtocol": "udp",
"ToPort": "53"
},
"Type": "AWS::EC2::SecurityGroupIngress"
},
"NatPapertrail": {
"Properties": {
"CidrIp": {
"Fn::Join" : [ ".", [ { "Ref": "VpcCidrBlock" }, "0", "0/24" ] ]
},
"FromPort": "11652",
"GroupId": {
"Ref": "NatSG"
},
"IpProtocol": "udp",
"ToPort": "11652"
},
"Type": "AWS::EC2::SecurityGroupIngress"
},
"NatHTTPIngress": {
"Properties": {
"CidrIp": {
"Fn::Join" : [ ".", [ { "Ref": "VpcCidrBlock" }, "0", "0/24" ] ]
},
"FromPort": "80",
"GroupId": {
"Ref": "NatSG"
},
"IpProtocol": "tcp",
"ToPort": "80"
},
"Type": "AWS::EC2::SecurityGroupIngress"
},
"NatHTTPSIngress": {
"Properties": {
"CidrIp": {
"Fn::Join" : [ ".", [ { "Ref": "VpcCidrBlock" }, "0", "0/24" ] ]
},
"FromPort": "443",
"GroupId": {
"Ref": "NatSG"
},
"IpProtocol": "tcp",
"ToPort": "443"
},
"Type": "AWS::EC2::SecurityGroupIngress"
},
"NatICMPIngress": {
"Properties": {
"CidrIp": {
"Fn::Join" : [ ".", [ { "Ref": "VpcCidrBlock" }, "0", "0/24" ] ]
},
"FromPort": "-1",
"GroupId": {
"Ref": "NatSG"
},
"IpProtocol": "icmp",
"ToPort": "-1"
},
"Type": "AWS::EC2::SecurityGroupIngress"
},
"NatNTPIngress": {
"Properties": {
"CidrIp": {
"Fn::Join" : [ ".", [ { "Ref": "VpcCidrBlock" }, "0", "0/24" ] ]
},
"FromPort": "123",
"GroupId": {
"Ref": "NatSG"
},
"IpProtocol": "udp",
"ToPort": "123"
},
"Type": "AWS::EC2::SecurityGroupIngress"
},
"NatSG": {
"Properties": {
"GroupDescription": "Security group for NAT host.",
"VpcId": {
"Ref": "Vpc"
}
},
"Type": "AWS::EC2::SecurityGroup"
},
"PublicA": {
"Properties": {
"AvailabilityZone": "us-west-2a",
"CidrBlock": {
"Fn::Join" : [ ".", [ { "Ref": "VpcCidrBlock" }, "0", "0/24" ] ]
},
"Tags": [
{
"Key": "Name",
"Value": "PublicA"
}
],
"VpcId": {
"Ref": "Vpc"
}
},
"Type": "AWS::EC2::Subnet"
},
"PublicAAssociation": {
"Properties": {
"RouteTableId": {
"Ref": "PublicRouteTable"
},
"SubnetId": {
"Ref": "PublicA"
}
},
"Type": "AWS::EC2::SubnetRouteTableAssociation"
},
"PublicB": {
"Properties": {
"AvailabilityZone": "us-west-2b",
"CidrBlock": {
"Fn::Join" : [ ".", [ { "Ref": "VpcCidrBlock" }, "1", "0/24" ] ]
},
"Tags": [
{
"Key": "Name",
"Value": "PublicB"
}
],
"VpcId": {
"Ref": "Vpc"
}
},
"Type": "AWS::EC2::Subnet"
},
"PublicBAssociation": {
"Properties": {
"RouteTableId": {
"Ref": "PublicRouteTable"
},
"SubnetId": {
"Ref": "PublicB"
}
},
"Type": "AWS::EC2::SubnetRouteTableAssociation"
},
"PublicC": {
"Properties": {
"AvailabilityZone": "us-west-2c",
"CidrBlock": {
"Fn::Join" : [ ".", [ { "Ref": "VpcCidrBlock" }, "2", "0/24" ] ]
},
"Tags": [
{
"Key": "Name",
"Value": "PublicC"
}
],
"VpcId": {
"Ref": "Vpc"
}
},
"Type": "AWS::EC2::Subnet"
},
"PublicCAssociation": {
"Properties": {
"RouteTableId": {
"Ref": "PublicRouteTable"
},
"SubnetId": {
"Ref": "PublicC"
}
},
"Type": "AWS::EC2::SubnetRouteTableAssociation"
},
"PrivateA": {
"Properties": {
"AvailabilityZone": "us-west-2a",
"CidrBlock": {
"Fn::Join" : [ ".", [ { "Ref": "VpcCidrBlock" }, "10", "0/24" ] ]
},
"Tags": [
{
"Key": "Name",
"Value": "PrivateA"
},
{
"Key": "network",
"Value": "private"
}
],
"VpcId": {
"Ref": "Vpc"
}
},
"Type": "AWS::EC2::Subnet"
},
"PrivateARouteAssociation": {
"Properties": {
"RouteTableId": {
"Ref": "ZoneAPrivateRouteTable"
},
"SubnetId": {
"Ref": "PrivateA"
}
},
"Type": "AWS::EC2::SubnetRouteTableAssociation"
},
"PrivateB": {
"Properties": {
"AvailabilityZone": "us-west-2b",
"CidrBlock": {
"Fn::Join" : [ ".", [ { "Ref": "VpcCidrBlock" }, "11", "0/24" ] ]
},
"Tags": [
{
"Key": "Name",
"Value": "PrivateB"
},
{
"Key": "network",
"Value": "private"
}
],
"VpcId": {
"Ref": "Vpc"
}
},
"Type": "AWS::EC2::Subnet"
},
"PrivateBRouteAssociation": {
"Properties": {
"RouteTableId": {
"Ref": "ZoneBPrivateRouteTable"
},
"SubnetId": {
"Ref": "PrivateB"
}
},
"Type": "AWS::EC2::SubnetRouteTableAssociation"
},
"PrivateC": {
"Properties": {
"AvailabilityZone": "us-west-2c",
"CidrBlock": {
"Fn::Join" : [ ".", [ { "Ref": "VpcCidrBlock" }, "12", "0/24" ] ]
},
"Tags": [
{
"Key": "Name",
"Value": "PrivateC"
},
{
"Key": "network",
"Value": "private"
}
],
"VpcId": {
"Ref": "Vpc"
}
},
"Type": "AWS::EC2::Subnet"
},
"PrivateCRouteAssociation": {
"Properties": {
"RouteTableId": {
"Ref": "ZoneCPrivateRouteTable"
},
"SubnetId": {
"Ref": "PrivateC"
}
},
"Type": "AWS::EC2::SubnetRouteTableAssociation"
},
"PersistenceA": {
"Properties": {
"AvailabilityZone": "us-west-2a",
"CidrBlock": {
"Fn::Join" : [ ".", [ { "Ref": "VpcCidrBlock" }, "20", "0/24" ] ]
},
"Tags": [
{
"Key": "Name",
"Value": "PersistenceA"
},
{
"Key": "network",
"Value": "private"
}
],
"VpcId": {
"Ref": "Vpc"
}
},
"Type": "AWS::EC2::Subnet"
},
"PersistenceARouteAssociation": {
"Properties": {
"RouteTableId": {
"Ref": "ZoneAPrivateRouteTable"
},
"SubnetId": {
"Ref": "PersistenceA"
}
},
"Type": "AWS::EC2::SubnetRouteTableAssociation"
},
"PersistenceB": {
"Properties": {
"AvailabilityZone": "us-west-2b",
"CidrBlock": {
"Fn::Join" : [ ".", [ { "Ref": "VpcCidrBlock" }, "21", "0/24" ] ]
},
"Tags": [
{
"Key": "Name",
"Value": "PersistenceB"
},
{
"Key": "network",
"Value": "private"
}
],
"VpcId": {
"Ref": "Vpc"
}
},
"Type": "AWS::EC2::Subnet"
},
"PersistenceBRouteAssociation": {
"Properties": {
"RouteTableId": {
"Ref": "ZoneBPrivateRouteTable"
},
"SubnetId": {
"Ref": "PersistenceB"
}
},
"Type": "AWS::EC2::SubnetRouteTableAssociation"
},
"PersistenceC": {
"Properties": {
"AvailabilityZone": "us-west-2c",
"CidrBlock": {
"Fn::Join" : [ ".", [ { "Ref": "VpcCidrBlock" }, "22", "0/24" ] ]
},
"Tags": [
{
"Key": "Name",
"Value": "PersistenceC"
},
{
"Key": "network",
"Value": "private"
}
],
"VpcId": {
"Ref": "Vpc"
}
},
"Type": "AWS::EC2::Subnet"
},
"PersistenceCRouteAssociation": {
"Properties": {
"RouteTableId": {
"Ref": "ZoneCPrivateRouteTable"
},
"SubnetId": {
"Ref": "PersistenceC"
}
},
"Type": "AWS::EC2::SubnetRouteTableAssociation"
},
"ZoneAPrivateRouteTable": {
"Properties": {
"VpcId": {
"Ref": "Vpc"
}
},
"Type": "AWS::EC2::RouteTable"
},
"ZoneBPrivateRouteTable": {
"Properties": {
"VpcId": {
"Ref": "Vpc"
}
},
"Type": "AWS::EC2::RouteTable"
},
"ZoneCPrivateRouteTable": {
"Properties": {
"VpcId": {
"Ref": "Vpc"
}
},
"Type": "AWS::EC2::RouteTable"
},
"PublicRouteTable": {
"Properties": {
"VpcId": {
"Ref": "Vpc"
}
},
"Type": "AWS::EC2::RouteTable"
},
"DefaultPublicRoute": {
"DependsOn": "VPCGatewayAttachment",
"Properties": {
"DestinationCidrBlock": "0.0.0.0/0",
"GatewayId": {
"Ref": "InternetGateway"
},
"RouteTableId": {
"Ref": "PublicRouteTable"
}
},
"Type": "AWS::EC2::Route"
},
"InternetGateway": {
"Type": "AWS::EC2::InternetGateway"
},
"VPCGatewayAttachment": {
"DependsOn": "InternetGateway",
"Properties": {
"InternetGatewayId": {
"Ref": "InternetGateway"
},
"VpcId": {
"Ref": "Vpc"
}
},
"Type": "AWS::EC2::VPCGatewayAttachment"
},
"Vpc": {
"Properties": {
"CidrBlock": {
"Fn::Join" : [ ".", [ { "Ref": "VpcCidrBlock" }, "0", "0/16" ] ]
},
"EnableDnsHostnames": "true",
"EnableDnsSupport": "true",
"Tags": [
{
"Key": "Name",
"Value": { "Ref": "VpcName" }
}
]
},
"Type": "AWS::EC2::VPC"
}
},
"Outputs": {
"VpcId": {
"Description": "The ID of the VPC",
"Value": { "Ref": "Vpc" }
}
}
}
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.