Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/naorlivne/drone-pulumi
- Owner: naorlivne
- License: lgpl-3.0
- Created: 2021-11-04T09:27:42.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T10:25:16.000Z (almost 2 years ago)
- Last Synced: 2023-03-04T05:09:24.230Z (almost 2 years ago)
- Language: Shell
- Size: 61.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
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.
## UsageThis 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: defaultsteps:
- 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.