jnates / dashboard_on_terraform

Implementation for dashboard deployment is added with terraform for aws

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Implement dashboard in terraform for AWS

How to initialize Terraform The workflow used in a Terraform project is as follows:

Steps to run project

Init: Initialization of the project.

terraform init

Plan: Planning of the resources defined in the code.

terraform plan

Apply: Deployment of the resources defined in the code.

terraform apply

Destroy: Destruction of the resources defined in the code (if necessary).

terraform destroy

Important: To run the project locally and be able to carry out the deployment, export the following variables by console with your AWS user credentials

export AWS_ACCESS_KEY_ID = "ID"
export AWS_SECRET_ACCESS_KEY = "SECRET_KEY"

To run the project you can run the buildinfra script

. ./buildinfra.sh

To execute destroy the project display you can run the buildinfra script

. ./destoryinfra.sh

About

Implementation for dashboard deployment is added with terraform for aws


Languages

Language:HCL 87.3%Language:Shell 12.7%