stephenbawks / aws-ssm-parameter

Checks to see if AWS SSM Parameter exists, if not it will create it. If exist, it will check to see that is current and up to date.
MIT License
0 stars 3 forks source link
amazon-web-services aws ssm

AWS SSM Parameter

Purpose

Often there are times where you have values that are used during runtime or environment specific that that exists on infrastructure. This actions primary use case is for that.

This actions purpose is to create SSM Parameters for you in a Github workflow. It actually will check to see if the SSM Parameter exists, if it does not exist it will then create a new parameter. If the parameter already exists, it checks to make sure its the same as the value you specify. If it is not, it will go ahead and update that value to be what you have specified.

How To Use This Action

Currently this option takes three different inputs/arguments. Two of them are required and one is optional.

Inputs

Name Type Required Description
name string Yes SSM Parameter Name
value string Yes SSM Parameter Value
description string Yes Parameter to attach to SSM Parameter
tier string No (Optional) Parameter Tier. Default Value: Standard Valid Values: Standard, Advanced

SSM Parameter Naming Constraints

SSM Parameter Tiers

Parameter Store includes standard parameters and advanced parameters. You individually configure parameters to use either the standard-parameter tier (the default tier) or the advanced-parameter tier.

Check out the AWS documentation about the differences between the two different tiers.

Examples

As as emample, suppose you want to create a SSM Parameter in Parameter Store but you do not want to actually expose that secret in your workflow. This is where you would be creating a Github Secret where you are storing that value and then using the Github secrets context to have that injected during runtime. In the example below, description is optional and not required but is recommended.

- name: Configure AWS credentials
  uses: aws-actions/configure-aws-credentials@v4
  with:
        aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
        aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
        aws-region: us-east-2

- name: Awesome Client Secret - SSM Parameter
  uses: stephenbawks/aws-ssm-parameter@v1.0.0
  with:
      name: /awesome/clientSecret
      value: ${{ secrets.AWESOME_CLIENT_SECRET }}
      description: Super Secret - Do Not Tell Anyone

The action does not require you to specify a tier when using the action. If you do not specify one, it will default your parameter to be an Standard type parameter.

If that does not work for you, you can also specify Standard or Advanced. Check out the AWS documentation on tiers for more details if you want more information on selecting a tier. See example below.

- name: Configure AWS credentials
  uses: aws-actions/configure-aws-credentials@v4
  with:
        aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
        aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
        aws-region: us-east-2

- name: Awesome Client Secret - SSM Parameter
  uses: stephenbawks/aws-ssm-parameter@v1.0.0
  with:
      name: /awesome/clientSecret
      value: ${{ secrets.AWESOME_CLIENT_SECRET }}
      description: Super Secret - Do Not Tell Anyone
      tier: Advanced