miroadamy-forks / docker-terraform-cli-helm

Docker image for the pipeline tool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Terraform && Helm Docker Container

This is a containerized Terraform & Helm CLI based on thinkwrap/docker-terraform-cli that also sets up for use with Terraform Cloud (via .terraformrc).

This container includes the AWS CLI.

DockerHub Badge

Example build

docker build -t thinkwrap/docker-terraform-cli-helm .

Example usage

The example below (keys) assumes an existing AWS account.

Ensure the following are set

export AWS_ACCESS_KEY_ID="<aws_access_key_id>"
export AWS_SECRET_ACCESS_KEY="<aws_secret_access_key>"
export AWS_DEFAULT_REGION="<aws_default_region>"

Run the container detatched

docker run --name docker-terraform-cli \
    --rm \
    --detach \
    --tty \
    --env "AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}" \
    --env "AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY}" \
    --env "AWS_DEFAULT_REGION=${AWS_DEFAULT_REGION}" \
    thinkwrap/docker-terraform-cli

Run a command

While this is obviously a very simple example, more complex usage, particularly in a CI/CD pipeline, is possible.

docker exec -it docker-terraform-cli-helm terraform --version 
docker exec -it docker-terraform-cli-helm helm version 

References

Terraform Documentation Terraform CLI Credentials Configuration Documentation Helm Documentation

License

Licensed under the Apache License, Version 2.0 (the "License").

This repository and its contents are licensed under the terms detailed in the LICENSE file.

About

Docker image for the pipeline tool

License:MIT License


Languages

Language:Dockerfile 100.0%