Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/poad/get-aws-ssm-parameter
https://github.com/poad/get-aws-ssm-parameter
aws github-actions
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/poad/get-aws-ssm-parameter
- Owner: poad
- License: mit
- Created: 2023-01-15T05:20:02.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-11T23:49:46.000Z (9 months ago)
- Last Synced: 2024-04-14T10:49:18.891Z (9 months ago)
- Topics: aws, github-actions
- Language: TypeScript
- Homepage:
- Size: 146 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# GitHub Action to get value from AWS Systems Manager Parameter Store
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](LICENSE)
[![PRs welcome!](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md)
[![version](https://img.shields.io/github/v/release/poad/get-aws-ssm-parameter?display_name=tag&include_prereleases&sort=semver)](VERSION)## Usage
```yaml
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 'Get value from Parameter Store'
id: parameter
uses: poad/[email protected]
with:
parameter-name: /example/parameter
aws-region: us-west-2
decryption: false
- name: 'Another example step'
run: echo ${{ steps.parameter.outputs.value }}
```## Additional Arguments
See [action.yml](action.yml) for more details.
## Outputs
The action outputs an string to the action output named `value`. You can access and manipulate this data using [workflow expressions](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions#steps-context).
## Contributing
We welcome your interest in contributing to this project. Please read the [Contribution Guidelines](CONTRIBUTING.md) for more guidance.
## License
Any contributions made under this project will be governed by the [MIT License](LICENSE)