20 Oct 2015 · Software Engineering

    How to Deploy a Ruby on Rails Application to Elastic Beanstalk with Semaphore

    9 min read
    Contents

    Introduction

    With AWS Elastic Beanstalk, you can quickly deploy and manage applications in the AWS cloud without having to worry about the infrastructure that supports those applications. AWS Elastic Beanstalk automatically handles all the details of capacity provisioning, load balancing, scaling, and application health monitoring.

    This article will explain how to set up continuous deployment for your Rails application on Elastic Beanstalk using Semaphore. First, we will initialize an environment on Elastic Beanstalk console and add some changes to our Rails application configuration. Then, we can go on to set up deployment on Semaphore.

    Prerequisites

    Before you begin, you will need to:

    • Create an AWS account
    • Add your project from GitHub or Bitbucket to Semaphore. Click here to learn how.

    Initializing an Elastic Beanstalk Environment

    An Elastic Beanstalk application is a logical collection of Elastic Beanstalk components, including environments, versions, and environment configurations. In Elastic Beanstalk, an application is conceptually similar to a folder. An environment is a version that is deployed onto AWS resources. Each environment runs only a single application version at a time.

    Creating an Application

    The first step is to create an application on the Elastic Beanstalk console. In the upper right corner, select the region in which to create the Elastic Beanstalk application. You should probably pick the one closest to your location.

    Elastic Beanstalk console home

    Next, click on “Create New Application”, and choose a name for your Elastic Beanstalk application.

    AWS Choose Application

    You can also do this from your command line:

    $ aws elasticbeanstalk create-application --application-name rtassignment
    

    Creating the Environment

    The next step is to create an environment. You should choose the “Create web server” option.

    AWS New Environment

    Your predefined configuration should be set to Ruby and, for now, you can choose “Single instance” as your environment type. You can upgrade to the load-balancing, autoscaling environment when the application is ready for production.

    AWS Environment Type

    For the initial application version, you can select “Sample application”. This is just a temporary Elastic Beanstalk application which we will use to easily check whether our configuration is correct.

    AWS Application version

    Next, you will need to choose a URL for your application and check its availability.

    AWS Environment information

    If your application requires a database, you will need to add an RDS DB instance in the following step.

    AWS Additional Resources

    In the next step, you can enter the configuration options as shown in the picture below. Adding the EC2 keypair is optional, but you may need it later for additional configuration, and you can’t add a keypair to a running instance without stopping it.

    If you don’t have an EC2 keypair, you can learn how to create one here, or, if you want to import your own public key created using a third-party tool, you can follow these instructions.

    AWS Configuration details

    When you create a new environment, you can specify tags to categorize the environment. Tags can help you identify environments in cost allocation reports, which is especially useful if you have many to manage. These are optional, so you can choose to leave the fields empty.

    AWS Environment tags

    In this example, we are using Postgres as our DB engine, but you can choose your own from the select box.

    AWS RDS configuration

    The last step is to define permissions for your environment. When you create a new environment, AWS Elastic Beanstalk prompts you to provide two AWS Identity and Access Management (IAM) roles, a service role and an instance profile.

    A role is essentially a set of permissions that grant access to actions and resources in AWS. An instance profile is a container for an IAM role that you can use to pass role information to an EC2 instance when the instance starts. This allows the Elastic Beanstalk service to monitor environment resources on your behalf. You can read more about permissions in the Elastic Beanstalk documentation.

    For most environments, the service role and instance profile that the AWS Management Console prompts you to create with 1-click role creation when you launch your environment include all of the permissions you need. We will use those in the example.

    AWS Permissions

    The final step is to review theinformation and, when you’ve confirmed it and clicked “Launch”, the environment should start initializing. It can take a while if you have selected the option to create RDS database.

    You can also do this from your command line with the following commands:

    $ aws elasticbeanstalk create-environment --application-name rtassignment --environment-name rtassignment-env --version-label version-1 --solution-stack-name "64bit Amazon Linux 2015.03 v2.0.0 running Ruby 2.2 (Puma)"
    

    The solution stack name is basically your server configuration. We are using "64bit Amazon Linux 2015.03 v2.0.0 running Ruby 2.2 (Puma)" for the solution stack name, but you can explore other solutions that can be listed using the following command:

    $ aws elasticbeanstalk list-available-solution-stacks
    

    When the environment status turns green, you can click the URL on the console. If you see the welcome screen of the sample application, it means that your environment has been properly configured.

    Welcome

    Retrieving Security Credentials

    Before you move on, you will need to retrieve security credentials, which you will use later on to provide Semaphore with access to your application. You can get your credentials by clicking on your name in the upper right corner of Elastic Beanstalk management console and selecting “Security credentials”.

    In the left navigation bar, click the “Users” option and create a new user. Choose a name for your user, download the credentials and store them somewhere safe — you will need those to configure Semaphore in one of the following steps.

    Create a New User

    Next, you need to define a set of permissions for the newly created user. These are the permissions you will delegate to Semaphore in order to deploy your application. In the users list, click the username to see its page. AWS uses managed policies to define these permissions, A policy can be attached to a user or a group. If you have many users, groups provide an easy way to manage their permissions. However, if this is the first time you are using Elastic Beanstalk and you just want to try it out, you can attach a policy straight to your user.

    By clicking the “Attach Policy” button under “Permissions”, you will see a list of predefined AWS policies. If you choose the AWSElasticBeanstalkFullAccess policy, your deployment will work , but this is usually not recommended. By following the standard security advice of granting least privilege, you should grant only the permissions required to perform a task.

    Attach Policy

    Preparing Your Rails Application

    The Elastic Beanstalk console allows you to define a set of environment variables for your application. The one you are certainly going to need is SECRET_KEY_BASE. This variable is used for specifying a key which allows the sessions used by the application to be verified against a known secure key to prevent tampering. You can get it by typing bundle exec rake secret command in your Rails project folder.

    Go to your Elastic Beanstalk console, select your application environment and choose “Software configuration” under the “Configuration” option in the left navigation bar. Paste the long string into the appropriate field.

    AWS Environment variables

    Deploying Your Rails Application with Semaphore

    Now that you have initialized your environment and configured your Rails application, it’s time to finally deploy it. Go to the Semaphore home page, find your project and add a new deployment server. On the next page, choose Elastic Beanstalk.

    Deployment options on Semaphore

    Choosing the Deployment Strategy

    For the purpose of this tutorial, we will use the Automatic deployment strategy. This means that every successful build on the branch you choose will launch a deploy.

    Choose strategy for Elastic Beanstalk deployment

    In the next step, you will need to choose the branch you wish to deploy.

    Choose branch for Elastic Beanstalk deployment

    Entering the AWS Credentials

    Enter the AWS credentials you retrieved in the “Security Credentials” step of this tutorial, and select the region your application resides in. This will enable Semaphore to list the application and environments you have in the region you specified.

    Choose credentials for Elastic Beanstalk deployment

    Selecting the Application and the Environment

    Next, you will need to select your target application and environment. In this example, we see that Semaphore found the my-app application and its environment. Also, you will need to select the S3 bucket where your project .zip file will be uploaded, because this is where Elastic Beanstalk will look for your application files.

    In this tutorial, we are assuming that you are using the default Elastic Beanstalk deployment process. However, the same setup on Semaphore will also work if you are using Elastic Beanstalk with Docker in a single container environment.

    When you created the Elastic Beanstalk application in the previous steps, a bucket named something similar to elasticbeanstalk-us-west-2-057267302678 should have been created. It’s fine if you want to select some other bucket with a more descriptive name.

    You can create a new S3 bucket on the next form by clicking the “Create new S3 Bucket” link and entering the bucket name. Alternatively, you can go to the S3 Management Console and create one there, in which case you just need to hit refresh on the Semaphore page.

    Choose application for Elastic Beanstalk deploy with creating S3 Bucket

    Configuring the Database

    Elastic Beanstalk uses a custom database.yml file, and Semaphore will generate one for you.

    Choose database

    Next, you just need to select your database adapter and enter the name of your database environment (e.g. “production”).
    Configure database

    We will select Postgres, just like we did when we created the application on the Elastic Beanstalk console. Your database environment name should match the RACK_ENV environment variable, which we mentioned in the segment titled “Preparing Your Rails Application” .

    Naming Your Server

    Now that you’ve configured the database, you can name your server and create it.

    Name your server for Elastic Beanstalk deploy

    Deploying the Application

    Click on “Deploy” to deploy your application.

    Deploy your application to Elastic Beanstalk

    Now, you just need to wait for the deploy commands to finish executing.

    Deployment to Elastic Beanstalk

    Congratulations! You’ve successfully deployed your application to AWS Elastic Beanstalk.

    P.S. Would you like to learn how to build sustainable Rails apps and ship more often? We’ve recently published an ebook covering just that — “Rails Testing Handbook”. Learn more and download a free copy.

    Leave a Reply

    Your email address will not be published. Required fields are marked *

    Avatar
    Writen by: