Provides a container image for running HashiCorp Terraform.
This image includes the following components:
Component | Version | Description |
---|---|---|
VMware Photon OS | 5.0 | A Linux container host optimized for vSphere and cloud-computing platforms. |
HashiCorp Terraform | 1.6.3 | Terraform is an open-source infrastructure-as-code software that enables you to safely and predictably create, change, and improve infrastructure. |
Run the following to download the latest container from Docker Hub:
docker pull tenthirtyam/terraform:latest
Run the following to download a specific version from Docker Hub:
docker pull tenthirtyam/terraform:x.y.z
Open an interactive terminal:
docker run --rm -it tenthirtyam/terraform
Run a local plan:
cd /Users/tenthirtyam/terraform/my-plan
docker run --rm -it --name terraform -v $(pwd):/tmp -w /tmp tenthirtyam/terraform init
Where /Users/tenthirtyam/terraform/my-plan
is the local directory path for your Terraform configurations.