Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/naorlivne/drone-pulumi

A drone plugin to run pulumi
https://github.com/naorlivne/drone-pulumi

Last synced: 3 months ago
JSON representation

A drone plugin to run pulumi

Awesome Lists containing this project

README

        

> **Warning**
> Drone cloud stopped working for months and as the developers of Drone seemed to stop caring I'm no longer able to fully test this nor will I longer have any use of it, as a result I'm stopping all development of this plugin.

# drone-pulumi

CI/CD build status: [![Build Status](https://cloud.drone.io/api/badges/naorlivne/drone-pulumi/status.svg)](https://cloud.drone.io/naorlivne/drone-pulumi)

Drone plugin for running pulumi.
## Usage

This plugin can be used to deploy pulumi stacks, it will create\update the given stack as needed.

The below pipeline configuration demonstrates simple usage:

```yaml
kind: pipeline
type: docker
name: default

steps:
- name: pulumi_deploy
image: naorlivne/drone-pulumi
settings:
pulumi_command: pulumi up --non-interactive --skip-preview --yes
pulumi_dependencies: pip install -r requirements.txt
pulumi_token:

```

## Parameter Reference

#### pulumi_command

The command to run in the container, defaults to `pulumi up --non-interactive --skip-preview --yes`.

#### pulumi_dependencies

The command to install dependencies in the container, defaults to python command `pip install -r requirements.txt`.

#### pulumi_token

the pulumi token to use, required.