From 79a050dccb6b06674e2d2633cb1b1a5c0291975b Mon Sep 17 00:00:00 2001 From: priyaranjanpatil Date: Mon, 4 Dec 2023 14:54:56 +1100 Subject: [PATCH] testing parameter store --- .github/workflows/github-actions.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index c3a48277..5691d0b4 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -46,10 +46,10 @@ jobs: run: | aws sts get-caller-identity - - name: Get platform env vars from aws ssm parameter store + - name: Platform env vars from aws ssm parameter store run: | # Loop through all repository variables - parameters=$(aws ssm get-parameters-by-path --path "/core/es_indexer/dev_ecr_ecs_config/" --output json) + parameters=$(aws ssm get-parameters-by-path --path "/core/es_indexer/dev_ecr_ecs_config/" --recursive --query 'Parameters[*].[Name,Value]' --output json) #parameters=$(aws ssm get-parameters-by-path --path "/YourPath/" --recursive --query 'Parameters[*].[Name,Value]' --output json) echo "$parameters" > parameters.json