0
0
mirror of https://github.com/thegeeklab/wp-opentofu.git synced 2024-09-19 15:32:45 +02:00
Woodpecker CI plugin to manage infrastructure with OpenTofu
Go to file
Kit Ewbank 2274218548 Use terraform version 0.6.16.
Add 'parallelism' parameter to limit the number of concurrent operations as Terraform walks its graph.

Download glibc-2.21-r2.apk from 'github.com/sgerrand/alpine-pkg-glibc' as 'circle-artifacts.com/gh/andyshinn/alpine-pkg-glibc' is not available.

Correct 'terraform apply' with parallelism option.

Run 'go fmt'.
2016-06-18 16:57:15 -04:00
.drone.sec Added initial .drone.sec 2016-02-25 21:49:11 +01:00
.drone.yml User standardized build system. 2016-01-26 23:50:54 +01:00
.gitignore Updated gitignore to respect also coverage.out 2016-02-24 23:42:21 +01:00
Dockerfile Use terraform version 0.6.16. 2016-06-18 16:57:15 -04:00
DOCS.md Use terraform version 0.6.16. 2016-06-18 16:57:15 -04:00
LICENSE Initial commit. 2016-01-26 23:50:26 +01:00
logo.svg Initial commit. 2016-01-26 23:50:26 +01:00
main.go Use terraform version 0.6.16. 2016-06-18 16:57:15 -04:00
MAINTAINERS Added initial maintainers file 2016-02-24 23:42:21 +01:00
Makefile Make the builds reproducable based on commit sha 2016-02-24 23:42:21 +01:00
README.md Added a similar README as for the other drone plugins 2016-02-24 23:42:21 +01:00

drone-terraform

Build Status Coverage 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.

Binary

Build the binary using make:

make deps build

Example

./drone-terraform <<EOF
{
    "repo": {
        "clone_url": "git://github.com/drone/drone",
        "owner": "drone",
        "name": "drone",
        "full_name": "drone/drone"
    },
    "system": {
        "link_url": "https://beta.drone.io"
    },
    "build": {
        "number": 22,
        "status": "success",
        "started_at": 1421029603,
        "finished_at": 1421029813,
        "message": "Update the Readme",
        "author": "johnsmith",
        "author_email": "john.smith@gmail.com",
        "event": "push",
        "branch": "master",
        "commit": "436b7a6e2abaddfd35740527353e78a227ddcb2c",
        "ref": "refs/heads/master"
    },
    "workspace": {
        "root": "/drone/src",
        "path": "/drone/src/github.com/drone/drone"
    },
    "vargs": {
        "plan": false,
        "remote": {
            "backend": "S3",
            "config": {
                "bucket": "my-terraform-config-bucket",
                "key": "tf-states/my-project",
                "region": "us-east-1"
            }
        },
        "vars": {
            "app_name": "my-project",
            "app_version": "1.0.0"
        }
    }
}
EOF

Docker

Build the container using make:

make deps docker

Example

docker run -i plugins/drone-terraform <<EOF
{
    "repo": {
        "clone_url": "git://github.com/drone/drone",
        "owner": "drone",
        "name": "drone",
        "full_name": "drone/drone"
    },
    "system": {
        "link_url": "https://beta.drone.io"
    },
    "build": {
        "number": 22,
        "status": "success",
        "started_at": 1421029603,
        "finished_at": 1421029813,
        "message": "Update the Readme",
        "author": "johnsmith",
        "author_email": "john.smith@gmail.com",
        "event": "push",
        "branch": "master",
        "commit": "436b7a6e2abaddfd35740527353e78a227ddcb2c",
        "ref": "refs/heads/master"
    },
    "workspace": {
        "root": "/drone/src",
        "path": "/drone/src/github.com/drone/drone"
    },
    "vargs": {
        "plan": false,
        "remote": {
            "backend": "S3",
            "config": {
                "bucket": "my-terraform-config-bucket",
                "key": "tf-states/my-project",
                "region": "us-east-1"
            }
        },
        "vars": {
            "app_name": "my-project",
            "app_version": "1.0.0"
        }
    }
}
EOF