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: "Create BaseNetwork" | |
Parameters: | |
EnvType: | |
Description: Select Environment Type. Default is prd | |
Type: String | |
Default: prd | |
AllowedValues: | |
- prd | |
- dev |
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: "Create VPC-B" | |
Metadata: | |
AWS::CloudFormation::Interface: | |
ParameterGroups: | |
- Label: | |
default: "Network Configuration" | |
Parameters: | |
- VPCName | |
- VPCCider |
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: "Create VPC,EC2 for Fluentd Test" | |
Parameters: | |
KeyPairName: | |
Type: "AWS::EC2::KeyPair::KeyName" | |
S3BucketName: | |
Type: String | |
SecurityGroupCidrIp: | |
Type: String | |
Default: 0.0.0.0/0 |
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
{ | |
"Resources" : { | |
"TestVPC" : { | |
"Type" : "AWS::EC2::VPC", | |
"Properties" : { | |
"CidrBlock" : "10.0.0.0/16", | |
"EnableDnsSupport" : "true", | |
"EnableDnsHostnames" : "true", | |
"InstanceTenancy" : "default", | |
"Tags" : [ {"Key" : "Name", "Value" : "TestVPC"}] |
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", | |
"Parameters" : { | |
"KeyName" : { | |
"Description" : "input EC2 Keyname", | |
"Type" : "AWS::EC2::KeyPair::KeyName" | |
} | |
}, | |
"Resources" : { | |
"VPC" : { |
NewerOlder