A utility to spin up an enterprise ready Drupal instance on AWS.
The script uses AWS Cloud Formation to create the AWS infrastructure and uses Puppet to configure the web servers created.
The only requirement of this application is Bundler. All other dependencies can be installed with:
bundle install
You need to set up your AWS security credentials before the sample code is able to connect to AWS. You can do this by creating a file named "credentials" at ~/.aws/ (C:\Users\USER_NAME.aws\ for Windows users) and saving the following lines in the file:
[default]
aws_access_key_id = <your access key id>
aws_secret_access_key = <your secret key>
See the Security Credentials page for more information on getting your keys.
To create a new Drupal stack:
bin/drupal_aws create
To see all options:
bin/drupal_aws help