Skip to content

mate-academy/aws_devops_task_1_test_lab_setup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AWS Essentials: Test Lab Setup

Welcome to AWS Essentials! This is the first task in a series to help you learn AWS.

It is easier to get familiar with a cloud by solving real-life tasks, so in this task series, you will deploy your very own instance of Grafana, configure it, and use it to monitor your cloud infrastructure! Grafana is a tool for building dashboards, mostly used for infrastructure monitoring.

Prerequirements

Before completing any task in the module, make sure that you followed all the steps described in the Environment Setup topic, in particular:

  1. Make sure you have an AWS account.

  2. Install AWS CLI.

  3. Install PowerShell Core.

  4. Install Terraform.

  5. Log in to AWS CLI on your computer by running the command:

    aws configure
    

Task Requirements

Grafana is an app for building dashboards with data from different sources. To run it, you need a webserver and a database. Today, you will start deploying your deployment's infrastructure with Terraform.

To complete this task:

  1. Edit main.tf — uncommend the aws_vpc resource. VPC is an AWS resource for building private networks.

  2. Run the following commands to generate a Terraform execution plan in JSON format:

    terraform init
    terraform plan -out=tfplan
    terraform show -json tfplan > tfplan.json
    
  3. Run an automated test to check yourself:

    pwsh ./tests/test-tf-plan.ps1
    

If any test fails - please check your task code and repeat step 2 to generage a new tfplan.json file.

  1. Deploy infrastructure using the following command:

    terraform apply
    
  2. Commit file tfplan.json and submit your solution for review.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published