Drone Terraform plugin
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Neemias Junior 731f1c021f
adding credsSet test
5 years ago
.dockerignore chore: ignore some more files 5 years ago
.drone.yml Version bump golang 1.9 7 years ago
.gitignore Updated gitignore to respect also coverage.out 9 years ago
CHANGELOG.md chore: update CHANGELOG.md 5 years ago
DOCS.md Merge pull request #94 from caioquirino/parallel_execution 5 years ago
Dockerfile Use Alpine Linux 3.11 5 years ago
LICENSE Initial commit. 9 years ago
MAINTAINERS Added initial maintainers file 9 years ago
Makefile Make the builds reproducable based on commit sha 9 years ago
README.md move terraform version to a docker build arg 5 years ago
build-docker.sh feat: terraform 0.12.20 5 years ago
go.mod godotenv to v1.3.0 5 years ago
go.sum godotenv to v1.3.0 5 years ago
logo.svg Initial commit. 9 years ago
main.go revert godotenv.Load to main.go 5 years ago
plugin.go returning true only when all credentials are set 5 years ago
plugin_test.go adding credsSet test 5 years ago
terraform.go Describe some public struct and func 6 years ago

README.md

drone-terraform

Build Status

Drone plugin to execute Terraform plan and apply. For the usage information and a listing of the available options please take a look at the docs.

Build

Build the binary with the following commands:

export GO111MODULE=on
go mod download
go test
go build

Docker

Build the docker image with the following commands:

docker build --rm=true \
  -t jmccann/drone-terraform \
  --build-arg terraform_version=0.12.0 .

Usage

Execute from the working directory:

docker run --rm \
  -v $(pwd):$(pwd) \
  -w $(pwd) \
  jmccann/drone-terraform:latest --plan

Drone 0.4

Legacy drone-terraform plugin exists @ jmccann/drone-terraform:0.4