-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcfn-asg-infrastructure.yaml
397 lines (378 loc) · 12.8 KB
/
cfn-asg-infrastructure.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
AWSTemplateFormatVersion: '2010-09-09'
Description: 'Code Training ASG + ELB Deploy Infrastructure'
Parameters:
KeyName:
Description: Name of an existing EC2 KeyPair to enable SSH access to the instances
Type: AWS::EC2::KeyPair::KeyName
ConstraintDescription: must be the name of an existing EC2 KeyPair.
SSHLocation:
Description: The IP address range that can be used to SSH to the EC2 instances
Type: String
MinLength: '9'
MaxLength: '18'
Default: 0.0.0.0/0
AllowedPattern: "(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})/(\\d{1,2})"
ConstraintDescription: must be a valid IP CIDR range of the form x.x.x.x/x.
VPC:
Type: 'AWS::EC2::VPC::Id'
Subnets:
Type: 'List<AWS::EC2::Subnet::Id>'
Description: At least two public subnets in different Availability Zones in the selected VPC
KmsKeyIdArn:
Type: String
ImageId:
Type: AWS::SSM::Parameter::Value<AWS::EC2::Image::Id>
Default: /aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2
InstanceType:
Type: String
Default: t2.micro
AllowedValues:
- t2.micro
- t2.small
- t3.micro
- t3.small
Resources:
InstanceRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: 'sts:AssumeRole'
Principal:
Service: ec2.amazonaws.com
Effect: Allow
Sid: ''
Policies:
- PolicyName: AuthenticatedS3GetObjects
PolicyDocument:
Version: 2012-10-17
Statement:
- Action:
- 's3:Get*'
- 's3:List*'
- 's3:PutObject'
Resource:
- !GetAtt CodeDeployS3Bucket.Arn
- !Join
- '/'
- - !GetAtt CodeDeployS3Bucket.Arn
- '*'
Effect: Allow
- PolicyName: AllowCodeDeploy
PolicyDocument:
Version: 2012-10-17
Statement:
- Action:
- 'codedeploy:CreateApplication'
- 'codedeploy:CreateDeployment'
- 'codedeploy:GetDeploymentConfig'
- 'codedeploy:GetApplicationRevision'
- 'codedeploy:RegisterApplicationRevision'
- 'kms:GenerateDataKey'
- 'kms:Decrypt'
Resource: '*'
Effect: Allow
InstanceProfile:
Type: AWS::IAM::InstanceProfile
Properties:
Path: /
Roles:
- !Ref InstanceRole
CodeDeployS3Bucket:
Type: AWS::S3::Bucket
Properties:
BucketName: !Sub codedeploy-asg-${AWS::AccountId}-${AWS::Region}-s3
VersioningConfiguration:
Status: Enabled
BucketEncryption:
ServerSideEncryptionConfiguration:
- ServerSideEncryptionByDefault:
SSEAlgorithm: 'aws:kms'
KMSMasterKeyID: !Ref KmsKeyIdArn
OwnershipControls:
Rules:
- ObjectOwnership: BucketOwnerPreferred
LaunchTemplate:
Type: AWS::EC2::LaunchTemplate
DependsOn: CodeDeployS3Bucket
Metadata:
Comment: Install a simple PHP application 2
AWS::CloudFormation::Init:
config:
packages:
yum:
git: []
wget: []
ruby: []
commands:
copySourceCode:
command: 'wget https://github.com/WordPress/WordPress/archive/master.zip && unzip master -d /tmp/WordPress_Temp && mkdir -p /tmp/WordPress && cp -paf /tmp/WordPress_Temp/WordPress-master/* /tmp/WordPress && rm -rf /tmp/WordPress_Temp && rm -f master.zip'
files:
"/tmp/WordPress/scripts/install_dependencies.sh":
content: !Sub |
#!/bin/bash
sudo amazon-linux-extras install php7.4
sudo yum install -y httpd mariadb-server php
mode: '000755'
owner: "root"
group: "root"
"/tmp/WordPress/scripts/start_server.sh":
content: !Sub |
#!/bin/bash
systemctl start mariadb.service
systemctl start httpd.service
systemctl start php-fpm.service
mode: '000755'
owner: "root"
group: "root"
"/tmp/WordPress/scripts/stop_server.sh":
content: !Sub |
#!/bin/bash
isExistApp=pgrep httpd
if [[ -n $isExistApp ]]; then
systemctl stop httpd.service
fi
isExistApp=pgrep mysqld
if [[ -n $isExistApp ]]; then
systemctl stop mariadb.service
fi
isExistApp=pgrep php-fpm
if [[ -n $isExistApp ]]; then
systemctl stop php-fpm.service
fi
mode: '000755'
owner: "root"
group: "root"
"/tmp/WordPress/scripts/create_test_db.sh":
content: !Sub |
#!/bin/bash
mysql -uroot <<CREATE_TEST_DB
CREATE DATABASE IF NOT EXISTS test;
CREATE_TEST_DB
mode: '000755'
owner: "root"
group: "root"
"/tmp/WordPress/scripts/change_permissions.sh":
content: !Sub |
#!/bin/bash
chmod -R 777 /var/www/html/WordPress
mode: '000755'
owner: "root"
group: "root"
"/tmp/WordPress/appspec.yml":
content: !Sub |
version: 0.0
os: linux
files:
- source: /
destination: /var/www/html/WordPress
hooks:
BeforeInstall:
- location: scripts/install_dependencies.sh
timeout: 300
runas: root
AfterInstall:
- location: scripts/change_permissions.sh
timeout: 300
runas: root
ApplicationStart:
- location: scripts/start_server.sh
- location: scripts/create_test_db.sh
timeout: 300
runas: root
ApplicationStop:
- location: scripts/stop_server.sh
timeout: 300
runas: root
mode: '000755'
owner: "root"
group: "root"
"/etc/cfn/cfn-hup.conf":
content: !Sub |
[main]
stack=${AWS::StackId}
region=${AWS::Region}
mode: "000400"
owner: "root"
group: "root"
"/etc/cfn/hooks.d/cfn-auto-reloader.conf":
content: !Sub |
[cfn-auto-reloader-hook]
triggers=post.update
path=Resources.WebServerHost.Metadata.AWS::CloudFormation::Init
action=/opt/aws/bin/cfn-init -v --stack ${AWS::StackName} --resource WebServerHost --region ${AWS::Region}
mode: "000400"
owner: "root"
group: "root"
services:
sysvinit:
cfn-hup:
enable: 'true'
ensureRunning: 'true'
files:
- "/etc/cfn/cfn-hup.conf"
- "/etc/cfn/hooks.d/cfn-auto-reloader.conf"
installCDAgent:
commands:
installCDAgent:
command: 'wget https://aws-codedeploy-us-east-1.s3.us-east-1.amazonaws.com/latest/install && chmod +x ./install && sudo ./install auto'
cwd: '/tmp'
services:
sysvinit:
codedeploy-agent:
enabled: "true"
ensureRunning: "true"
configSets:
"default":
- "config"
- "installCDAgent"
Properties:
LaunchTemplateName: CodeDeploy-ASG-LaunchTemplate
LaunchTemplateData:
DisableApiTermination: true
IamInstanceProfile:
Arn: !GetAtt InstanceProfile.Arn
ImageId: !Ref ImageId
InstanceType: !Ref InstanceType
KeyName: !Ref KeyName
SecurityGroupIds:
- !Ref EC2SecurityGroup
UserData:
Fn::Base64: !Sub |
#!/bin/bash -xe
# Get the latest CloudFormation helper scripts
yum install -y aws-cfn-bootstrap
# Start cfn-init
/opt/aws/bin/cfn-init -v --stack ${AWS::StackName} --resource LaunchTemplate --region ${AWS::Region}
cd /tmp/WordPress && \
aws deploy push \
--application-name WordPress_App \
--s3-location s3://codedeploy-asg-${AWS::AccountId}-${AWS::Region}-s3/WordPressApp.zip \
--ignore-hidden-files \
--region ${AWS::Region}
# cfn-init completed so signal success or not
/opt/aws/bin/cfn-signal -e $? --stack ${AWS::StackName} --resource AutoScalingGroup --region ${AWS::Region}
ELBSecurityGroup:
Type: AWS::EC2::SecurityGroup
Properties:
GroupDescription: ELB Security Group
VpcId: !Ref VPC
SecurityGroupIngress:
- IpProtocol: tcp
FromPort: 80
ToPort: 80
CidrIp: 0.0.0.0/0
EC2SecurityGroup:
Type: AWS::EC2::SecurityGroup
Properties:
GroupDescription: EC2 Security Group
VpcId: !Ref VPC
SecurityGroupIngress:
- IpProtocol: tcp
FromPort: 80
ToPort: 80
SourceSecurityGroupId:
Fn::GetAtt:
- ELBSecurityGroup
- GroupId
- IpProtocol: tcp
FromPort: 22
ToPort: 22
CidrIp: !Ref SSHLocation
AutoScalingGroup:
Type: AWS::AutoScaling::AutoScalingGroup
Properties:
LaunchTemplate:
LaunchTemplateId: !Ref LaunchTemplate
Version: !GetAtt LaunchTemplate.LatestVersionNumber
MaxSize: '3'
MinSize: '1'
# NotificationConfigurations:
# - TopicARN: !Ref NotificationTopic
# NotificationTypes: ['autoscaling:EC2_INSTANCE_LAUNCH', 'autoscaling:EC2_INSTANCE_LAUNCH_ERROR', 'autoscaling:EC2_INSTANCE_TERMINATE', 'autoscaling:EC2_INSTANCE_TERMINATE_ERROR']
TargetGroupARNs:
- !Ref TargetGroup
VPCZoneIdentifier: !Ref Subnets
TargetGroup:
Type: AWS::ElasticLoadBalancingV2::TargetGroup
Properties:
HealthCheckIntervalSeconds: 30
HealthCheckProtocol: HTTP
HealthCheckTimeoutSeconds: 15
HealthyThresholdCount: 5
Matcher:
HttpCode: '200'
Name: EC2TargetGroup
Port: 80
Protocol: HTTP
TargetGroupAttributes:
- Key: deregistration_delay.timeout_seconds
Value: '20'
UnhealthyThresholdCount: 3
VpcId: !Ref VPC
ALBListener:
Type: AWS::ElasticLoadBalancingV2::Listener
Properties:
DefaultActions:
- Type: forward
TargetGroupArn: !Ref TargetGroup
LoadBalancerArn: !Ref ApplicationLoadBalancer
Port: 80
Protocol: HTTP
ApplicationLoadBalancer:
Type: AWS::ElasticLoadBalancingV2::LoadBalancer
Properties:
Scheme: internet-facing
Subnets: !Ref Subnets
SecurityGroups:
- !GetAtt ELBSecurityGroup.GroupId
CodeDeployServiceRole:
Type: "AWS::IAM::Role"
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
-
Effect: "Allow"
Principal:
Service:
- "codedeploy.amazonaws.com"
Action:
- "sts:AssumeRole"
Policies:
-
PolicyName: allow-ec2
PolicyDocument:
Version: "2012-10-17"
Statement:
-
Effect: Allow
Action:
- ec2:*
- autoscaling:*
- iam:PassRole
Resource: "*"
CodeDeployApplication:
Type: AWS::CodeDeploy::Application
Properties:
ApplicationName: CodeDeploy_ASG_WordPress_App
ComputePlatform: Server ### Allowed values: ECS | Lambda | Server
CodeDeployDeploymentGroup:
Type: "AWS::CodeDeploy::DeploymentGroup"
DependsOn: AutoScalingGroup
Properties:
ApplicationName: !Ref CodeDeployApplication
ServiceRoleArn: !GetAtt CodeDeployServiceRole.Arn
AutoScalingGroups:
- !Ref AutoScalingGroup
DeploymentConfigName: CodeDeployDefault.OneAtATime
DeploymentGroupName: CodeDeployASGDeploymentGroup
Deployment:
Description: "Simple Deploy WordPress to an ASG"
IgnoreApplicationStopFailures: true
Revision:
RevisionType: S3
S3Location:
Bucket: !Ref CodeDeployS3Bucket
Key: 'WordPressApp.zip'
BundleType: Zip