AWS::CloudFormation::Init how does it work?

16,947

Creating a AWS::CloudFormation::Init resource as metadata to an EC2 instance does not cause the instance to do anything by itself.

For the instance to actually perform all the operations specified in that resource, it must run the cfn-init command line tool. On Amazon EC2 AMIs that command is already installed at /opt/aws/bin/cfn-init. The command takes several options, including the name of the AWS::CloudFormation::Init resource, the name of the EC2 server resource, and the region you are running in. You also need to provide AWS security credentials.

If you'd like this to run automatically when you create a new instance (I sure did) you'll have to use the EC2 instance's UserData to create a shell script that the instance will run on first boot, and put the cfn-init command in it.

I've written about this specific issue in my blog recently.

Share:
16,947

Related videos on Youtube

SoYoung
Author by

SoYoung

Updated on September 14, 2022

Comments

  • SoYoung
    SoYoung over 1 year

    We can use AWS::CloudFormation::Init to execute commands and upload files after starting an instance. But does anybody know what are the internals of this operation (from Amazon's side)?

    When we pass a template in, at what point are the files or commands transmitted to the VM? Is this is a Xen feature (through special pipe), or via the network?

    "Resources": {
      "MyInstance": {
        "Type": "AWS::EC2::Instance",
        "Metadata" : {
          "AWS::CloudFormation::Init" : {
            "config" : {
              "packages" : {
                :
              },
              "sources" : {
                :
              },
              "commands" : {
                :
              },
              "files" : {
                :
              },
              "services" : {
                :
              },
              "users" : {
                :
              },
              "groups" : {
                :
              }
            }
          }
        },
        "Properties": {
          :
        }
      }
    }
    
  • SoYoung
    SoYoung over 11 years
    Thank you, it's really really useful information. But I still want to know, how it works behind the cfn-init(how those command and files transmitted to the VM, via the network or other virtual devices?)
  • Charles Engelke
    Charles Engelke over 11 years
    cfn-init makes an HTTP request to an Amazon address to fetch the data in the resource. It then performs the actions specified in the template. Where is the template? Somewhere on an Amazon controlled server.
  • SoYoung
    SoYoung over 11 years
    So, all of those action are based on network? It sounds reasonable, but still have some inconvenient situation. If I don't want to open the SecurityGroup out of the security reason(only 22 port), it will be a problem to deploy my application automatically. To be honest, I hope they are transmitted by special pipe or devices(in xen). Any way, thanks for your help!
  • Master James
    Master James over 7 years
    There is also a way to run a command from the template here I think?docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide‌​/…