forked from maulik2311/Linux-by-Kastro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AWS Developer Tools - Day 02.txt
70 lines (46 loc) · 1.5 KB
/
AWS Developer Tools - Day 02.txt
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
AWS Code Commit
AWS Code Pipeline
AWS Code Build (Theory)
AWS Code Deploy
AWS Cloud Formation
Project: Code Commit (github) + Code Deploy + Code Pipeline
-------------------------------
AWS Code Build
-------------------------------
=> As an alternative to AWS Code Build, we have Jenkins
=> Region specific
=> Managed by AWS
=> Serverless
=> Billing gets generated based on time taken for the builds to happen
=> Scalable
=> We can do multiple builds at a time
=> "buildspec" file
=> Format: json (or) yaml or yml
=> Extension: buildspec.yml (or) buildspec.yaml (or) buildspec.json
=> It can also be defined during the project creation
---------------------------------------
AWS Code Deploy
---------------------------------------
=> Managed by AWS
=> It is used to automate the application deployment
=> Region specific service
=> Scalable
=> Billing
=> Serverless
=> Supports EC2, Lambda, ECS, On-premise deployments
=> We can integrate with Code Pipeline
=> "appspec" file
=> yml, yaml, json
=> JSON = JavaScript Object Notation
=> YAML = Yet Another Markup Language
Inendations are most important in yml format
Syntax is most important in json
----------------------------------------------
Cloud Formation
----------------------------------------------
=> Alternative to Terraform
=> Limited to AWS
=> Create the infratructure in the AWS Cloud
=> IaaC - Infrastructure as a Code
=> Cloud Formation Templates
=> Extension: yaml (yml)