cobusbernard / aws-containers-for-beginners

Webinar content

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AWS Getting started with Containers Webinar

This is an older implementation, I recommend you look at Bootstrapping your Terraform automation with Amazon CodeCatalyst that I wrote on how to set up the permissions and bootstrap Terraform. There is also a followup guide on how you can start Automating Multiple Environments with Terraform.

You can use the implementation in these to also use GitHub Actions if you prefer to manage multiple environments.

This repo is used to set up the infrastructure used to build and deploy a container to ECS Fargate for a webinar.

Setup

  1. Create an IAM user with sufficient permissions to create the infrastructure you require. Generate an API key for the user, and create a named profile in ~/.aws/credentials that looks like this:
[aws-webinar]
aws_access_key_id = your_api_key
aws_secret_access_key = your_api_key_secret
  1. Create an S3 bucket in your region of choice. Edit infra/terraform-state.tf by replacing the bucket, region and profile values to what you have configured.

  2. Run terraform init in the infra directory.

  3. In infra/variables.tf, change the github_username and github_repo_name defaults to your ones.

  4. Create infra/secret.tf with the following:

locals {
  webhook_secret  = "web-hook-secret-shared-string"
  github_token    = "github-token-with-permission-to-create-webhooks"
  github_username = "cobusbernard"
}

About

Webinar content


Languages

Language:HCL 98.6%Language:HTML 1.1%Language:Dockerfile 0.3%