-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcloudformation
41 lines (29 loc) · 1.05 KB
/
cloudformation
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
#################################
# By Ksanchez #
# Security+ | MGP | Ps. Auditor #
# @ksanchez_cld (Twitter) #
#################################
CloudFormation
- Infrastructure as a Code (IAC)
- Support Json, Yaml templates.
- Version control capability.
- Templates describes all the aws resources and CloudFormation takes care of provisioning and configuring.
TEMPLATE SECTIONS
- Format Version.
- Description.
- Metadata.
- Parameters.
- Mappings.
- Transform.
- Outputs.
- Resources.
- Conditions.
STACKSETS
- A StackSet is a container for AWS CloudFormation stacks that lets you provision stacks across AWS accounts and regions by using a single AWS CloudFormation template.
- StackSets allows you to create stacks across regions and in multiple accounts.
CLOUDFORMER
- Creates an aws CloudFormation template from an existing aws resources in your account.
- You select resources from your account.
CLOUDFORMATION DESIGNER
- Visual tool that provides a drag and drop interface for adding resources to templates.
- Supports Json and Yaml.