Skip to content

abhilashkkale/devops-kata-terraform

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build server

  • cd server
  • docker build -t server:1.0 .

Build client

  • cd client
  • docker build -t client:1.0 .

The above steps are now part of the terraform code.

Deployment

  • cd infra
  • terraform init

Plan to view the infra changes

  • terraform plan -var-file="env/dev.tfvars"

Apply infra changes

  • terraform apply -var-file="env/dev.tfvars"

Destroy infra changes

  • terraform destroy -var-file="env/dev.tfvars"

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 33.5%
  • HCL 24.4%
  • HTML 23.6%
  • CSS 12.7%
  • Dockerfile 5.8%