Skip to content

Project used as a Tech Challenge for the Software Architecture Postgraduate Course at FIAP. This is a Terraform project to create a VPC and other network resouces.

Notifications You must be signed in to change notification settings

IanOliv/fiap-irango-infra

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fiap iRango Infra

terraform aws

Architecture Diagram:

Architecture diagram

Dependencies

Instructions to run

Before all, you need set AWS credentials ENVs using:

export AWS_ACCESS_KEY_ID=xxxxxx
export AWS_SECRET_ACCESS_KEY=xxxxxx

Or configure it in windows environments.

Using make

# To init terraform
make init

# To run terraform plan
make plan

# To apply changes
make up

To destroy resources:

make down

Without make

# To init terraform
terraform -chdir=terraform init

# To run terraform plan
terraform -chdir=terraform plan

# To apply changes
terraform -chdir=terraform apply -auto-approve

To destroy resources:

terraform -chdir=terraform destroy -auto-approve

About

Project used as a Tech Challenge for the Software Architecture Postgraduate Course at FIAP. This is a Terraform project to create a VPC and other network resouces.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HCL 96.3%
  • Makefile 3.7%