poad / get-aws-ssm-parameter

MIT License
1 stars 0 forks source link
aws github-actions

GitHub Action to get value from AWS Systems Manager Parameter Store

License PRs welcome! version

Usage

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - name: 'Get value from Parameter Store'
      id: parameter
      uses: poad/get-aws-ssm-parameter@v3.0.0
      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 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.

Contributing

We welcome your interest in contributing to this project. Please read the Contribution Guidelines for more guidance.

License

Any contributions made under this project will be governed by the MIT License