https://github.com/envato/cloudformation-output-buildkite-plugin
Collects cloudformation output from an AWS stack and add them as environment variables
https://github.com/envato/cloudformation-output-buildkite-plugin
aws-cloudformation buildkite-plugin
Last synced: 5 months ago
JSON representation
Collects cloudformation output from an AWS stack and add them as environment variables
- Host: GitHub
- URL: https://github.com/envato/cloudformation-output-buildkite-plugin
- Owner: envato
- License: mit
- Created: 2018-11-26T09:30:52.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2021-09-29T06:26:40.000Z (about 4 years ago)
- Last Synced: 2025-05-14T11:19:09.340Z (5 months ago)
- Topics: aws-cloudformation, buildkite-plugin
- Language: Shell
- Size: 11.7 KB
- Stars: 2
- Watchers: 51
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cloudformation Output Buildkite Plugin
A [Buildkite plugin](https://buildkite.com/docs/agent/v3/plugins) for gathering Cloudformation output
and setting as `env` variables## Gathering Cloudformation Output
```yml
steps:
- name: Get Output
plugins:
- envato/cloudformation-output#v2.1.0:
output:
- 'mystack:myoutput:region'
- 'yourstack:youroutput:region'
```## Configuration
### `output` (required)
You can use this plugin to return Cloudformation output from AWS and set `env` variables for use by other scripts or plugins.
The returned variable is named the same as your Cloudformation stack output.
Note: Your output names will have `-` replaced with `_` and capitalised, ie, `my-output` will be the `env` var `MY_OUTPUT`.
## License
MIT (see [LICENSE](LICENSE))