Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

cmdlabs/docker-terragrunt-utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-terragrunt-utils

Docker image with terraform, terragrunt, aws-cli and terraform-docs

Why?

This image is used when following the 3 Musketeers pattern. By running terraform inside Docker, we ensure consistency, control and confidence.

  • Consistency: when developing automated processes that use terraform, you can be sure that they will function the same whether you run it on your Windows workstation or on a Jenkins build agent.
  • Control: by specifying the version of the image in [docker-compose.yml][], we can deploy to two incompatible versions of Terraform simultaneously.
  • Confidence: reliable deployments build confidence in the use of CI/CD pipelines, creating a positive feedback loop that encourages developers to use CI/CD

How To Use

Makefile:

diff:
	docker-compose run --rm tg terragrunt plan-all

docker-compose.yml:

services:
  tg:
    image: cmdlabs/terragrunt-utils:1.3.1
    volumes:
      - .:/work:Z

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published