View on GitHub

Serverless / Cloudformation / Terraform Notes

Compilation of Notes on topics like Serverless Scripts, Cloudformation Scripts, and Terraform Scripts.

Cloudformation

Visitors

Benefits of AWS CloudFormation

CloudFormation Vs Others

Updates in CloudFormation

  1. Updates with no interruption
  2. Replacements Updates

Key Points

Optional Attributes For Resources

  1. DependsOn
  2. DeletionPolicy
  3. CreationPolicy
  4. Metadata

Mappings

Mappings:
    RegionMap:
        us-east-1:
            "32":"ami-111"
            "64":"ami-222"
        us-west-1:
            "32":"ami-333"
            "64":"ami-444"
        eu-east-1:
            "32":"ami-555"
            "64":"ami-666"

Mappings Vs Parameter

How to Access Mapping values

Use Fn::FindInMap: OR !FindInMap [ MapName, TopLevelKey, SecondLevelKey ]

!FindInMap [ RegionMap, !Ref "AWS::Region", 32]
Fn::FindInMap: [ RegionMap, !Ref "AWS::Region", 32]

Pseudo Parameters

Outputs

Cross Stack Reference

Conditions

Get Attribute Function

Use !GetAtt or Fn::GetAtt:

!GetAtt EC2Instance.AvailabilityZone

Metadata

AWS::CloudFormation::Designer - This helps with visuals of template for placements of resources

AWS::CloudFormation::Interface - Defining Grouping and ordering. It is used when users must input template parameters manually. Ex. Group All EC2 related parameters together

Metadata: 
  AWS::CloudFormation::Interface: 
    ParameterGroups: 
      - 
        Label: 
          default: "Network Configuration"
        Parameters: 
          - VPCID
          - SubnetId
          - SecurityGroupID
      - 
        Label: 
          default: "Amazon EC2 Configuration"
        Parameters: 
          - InstanceType
          - KeyName
    ParameterLabels: 
      VPCID: 
        default: "Which VPC should this be deployed to?"

CloudFormation Init and EC2 - User Data

UserData:
    Fn::Base64: |
        script
# | pipe here helps for multiline string

Limitation to UserData & Workaround

Limitation is that it only fits certain characters so the workaround is to use CloudFormation Helper script

AWS CloudFormation provides the following Python helper scripts that you can use to install software and start services on an Amazon EC2 instance that you create as part of your stack:

Usual Flow : cfn-init then cfn-signal then optionally cfn-hup

Flow Diagram

Config Block

Packages Block

Command Block

Services Block

Files

files:
    /tmp/temp.txt:
        content: !Sub |
            My stack name
            is ${AWS::StackName}

Substitution Functions

Replace piece of text with its value Ex. In above case ${AWS::StackName} will be replaced with its value

!Sub
  - String
  - {Varname: varvalue, Var2Name: var2value}
#OR
!Sub String

User Data vs CloudFormation::Init vs Helper Scripts

In summary, what’s the difference between EC2 User Data, CloudFormation::Init, and CF Helper scripts?

Triggering AWS::CloudFormation::Init inside UserData is done by one of helper scripts (cfn-init).

CloudFormation Drift

Nested Stacks

Resources:
    CloudFormationStack:
        Type: AWS::CloudFormation::Stack
        Properties:
            TemplateURL: template-TemplateURL
            Parameters:
                ApplicationName: !Ref AWS::StackName
                VPCId: !Ref VPCId
            TimeoutInMinutes: 60

Exporting Stack Output Values Vs. Using Nested Stacks

Deletion Policy

    DeletionPolicy: Retain

Useful Tools

Tools Details
Troposphere Leverage Python to write CF templates
Former2.com Create CF Template

Troubleshooting

Reference

Visitors