Skip to content

Instantly share code, notes, and snippets.

@tannerwatson
Created November 16, 2016 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tannerwatson/9b5a5879c04cf64de431c0f7244af6e4 to your computer and use it in GitHub Desktop.
Save tannerwatson/9b5a5879c04cf64de431c0f7244af6e4 to your computer and use it in GitHub Desktop.
CloudFormation Init - Yum Packages
"Resources": {
"MyInstance": {
"Type": "AWS::EC2::Instance",
"Metadata" : {
"AWS::CloudFormation::Init" : {
"config" : {
"packages" : {
"yum" : {
"nfs-utils" : []
"python27" : []
}
},
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment