Giter Club home page Giter Club logo

training's Introduction

Atlas Integration

Up until this point, we have been running Terraform locally. This is great for a single developer, but tends to break down in large teams. Instead, it is recommended that you use Atlas for managing infrastructure. In addition to running Terraform for you, Atlas has built-in ACLs, secure variable storage, and UIs for visualizing infrastructure. Atlas is also able to integrate with GitHub to provide first-class provenance in the system.

Remote State Setup

In order to start using this with Atlas, you will need to setup your remote state with Atlas. If you are starting a new project, you could just use the GitHub integration. Since we have an existing project, we have to configure the remote state and push our current Terraform configurations to Atlas so that Atlas can manage our resources.

First, export you Atlas token as an environment variable. Terraform reads this environment variable to authenticate you with Atlas:

$ export ATLAS_TOKEN="$(cat terraform.tfvars | grep atlas_token | cut -d'=' -f2 | tr -d '"' | tr -d ' ')"

Next, grab the name of your environment:

$ export ATLAS_ENV="$(cat terraform.tfvars | grep atlas_environment | cut -d'=' -f2 | tr -d '"' | tr -d ' ')"

The way we send our state to Atlas is via the following commands. Similar to git, first we configure the remote:

$ terraform remote config -backend="atlas" -backend-config="name=$ATLAS_ENV"

Be sure to replace "" with your Atlas username. This will configure the remote state. Now we need to push our copy to Atlas:

$ terraform remote push

Similar to git push, this will send our remote state to Atlas. Atlas is now managing our remote state - this is most ideal for teams or using Atlas to run Terraform for you (which we will do now).

Local Files Push

We could connect to GitHub, but since we have our Terraform configurations locally, let's just upload them to Atlas now:

$ terraform push -vcs=false -name="$ATLAS_ENV" ./05-atlas

Be sure to replace "" with your Atlas username (the same you used for configuring the remote state).

This will push our local Terraform files to Atlas and trigger a plan. It will also push the local variables we have configured (such as our AWS secrets) securely to Atlas.

We specify the vcs=false option because we are not using VCS (yet).

Now we can link this environment to GitHub and leverage SCM workflows for our infrastructure! Click on "integrations" in the Atlas UI for this environment and link to this GitHub repository under the terraform subdirectory.

Connecting to GitHub

A great feature in Atlas is the ability to link an environment to a GitHub repository. When changes are submitted to that repository (either via a change request or via a commit to the default branch), Atlas will automatically ingress those changes and queue a Terraform plan. If the submission is a Pull Request, Atlas will report the status back on the GitHub page.

If you have not already done so, please sign up for a GitHub account now. Don't worry - it's completely free for open source (which is what we are doing). Login to github.com and create a new repo called "training". You can name it something different, but the rest of this guide will assume the repo is called training. Just like Atlas, everything on GitHub is namespaced under your user, so the actual repository will be <username>/training. Once created, we need to configure our local Git setup to be able to push to GitHub.

cd 05-atlas
git init .
git add .
git commit -m "Initial commit"
git remote add origin https://github.com/<username>/training.git
git push -u origin master
cd ..

Don't forget to replace <username> with your GitHub username. If you refresh the page on github.com, you should see this README and your files. If you do not see that, or if you see a list of all the different sections (such as "01-ssh-keypair", etc), please notify the instructor before proceeding.

Now that we have pushed our code to GitHub, we need to configure Atlas to watch our repository for changes. Login to Atlas and click on "environments" in the main navigation bar. Next, click on the name of your environment (it should be called "training"). Finally, click on "Integrations" on the sidebar navigation.

On the bottom of the integrations page, you will see a section for GitHub. If this is your first time using Atlas with GitHub, you will need to authorize Atlas to communicate with GitHub. Once you do, you will be redirected back to Atlas and you will see a form where you can select the GitHub repository, branch, and Terraform directory from which to pull changes.

Fill out the form, leaving the GitHub branch and Terraform directory fields empty with their default values. Finally, click "Associate" to link the integration. Now, any commits or Pull Requests to that repository will trigger Terraform runs in Atlas.

You no longer need to run or manage Terraform locally. All you data is stored and versioned securely in Atlas, backed by Vault.

Making Changes via GitHub

  1. Click on the "README.md" file in GitHub
  2. Click "edit"
  3. Make any change such as adding a newline character
  4. Check "Create a new branch for this commit"
  5. Click "Propose file change"
  6. Click "Create pull request"
  7. Notice the yellow status icon - click on it
  8. See the plan running in Atlas
  9. See that the plan has no changes
  10. Back in the GitHub UI, see the green checkbox
  11. Merge the Pull Request
  12. Go to the environment in Atlas
  13. See that the merge is queuing a plan - it will have "no changes"

Making Infrastructure Changes via GitHub

  1. Edit the file "terraform/nomad.tf" and bump the count attribute of the Nomad client to 2
  2. Check "Create a new branch for this commit"
  3. Click "Propose file change"
  4. Click "Create pull request"
  5. Notice the yellow status icon - click on it
  6. Watch the plan and look at the output
  7. Notice that resources are changed, but you cannot apply it (because it is from a Pull Request)
  8. Merge the Pull Request
  9. Go to the environment in Atlas
  10. See that the merge is queuing a plan - it will have changes
  11. Click on the plan
  12. Assuming the output looks good, click "Confirm & Apply"
  13. Watch as Atlas provisions the new Nomad client for you
  14. The new client will automatically join the Nomad cluster and register itself with the Nomad servers to start accepting work

Making Scary Changes via GitHub

  1. Edit the file aws.tf and change the name of the aws_security_group
  2. Check "Create a new branch for this commit"
  3. Click "Propose file change"
  4. Click "Create pull request"
  5. Notice the yellow status icon - click on it
  6. Watch the plan and look at the output
  7. Notice that a bunch of things are changing
  8. Do not merge the Pull Request because that's scary - there are potentially breaking changes, and Atlas alerted you to those changes via the output

Tearing it all down

  1. In Atlas, click on "environments" in the header
  2. Click on your environment
  3. Click on settings
  4. Click "Queue destroy plan" on the bottom of the page - this is just like any other Terraform plan in Atlas, except this will destroy the resources. You will still need to confirm the plan in order to apply the changes
  5. Once that apply is finished, you can check in the AWS console and see that all the resources have been destroyed
  6. Back on the settings page, you can optionally delete all of Atlas' metadata about the environment by clicking the red "Delete from Atlas" button

training's People

Contributors

timterle avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.