Please enable JavaScript.
Coggle requires JavaScript to display documents.
CloudFormation (Limit (200 stacks/Account, 200 Resources/Template, 60…
CloudFormation
-
-
Intrinsic Function:
Use intrinsic functions in your templates to assign values to properties that are not available until runtime.
-
Fn::FindInMap
returns the value corresponding to keys in a two-level map that is declared in the Mappings section.
Fn::Join
"Fn::Join" : [ ":", [ "a", "b", "c" ] ] = "a:b:c"
-
-
Generals
-
WaitCondition:
blocking the creation of other resources until a completion signal is received from an external source
-
AWS CloudFormation gives developers and systems administrators an easy way to create and manage a collection of related AWS resources, provision and update them in an orderly and predictable fashion
Template
a JSON or YAML-format, text-based file:
.json, .yaml, .template, or .txt
elements: max 4096 chars
-
Resources
-
cfn-init helper script:This script is useful for configuring and installing applications on EC2 instances
-
-
-
-
-
-
-
-