{"id":41851063,"url":"https://github.com/sudolabs-io/aws-ssm-cli","last_synced_at":"2026-01-25T10:21:43.357Z","repository":{"id":37068157,"uuid":"411568912","full_name":"sudolabs-io/aws-ssm-cli","owner":"sudolabs-io","description":"CLI tool for managing environment variables inside AWS Systems Manager Parameter Store","archived":false,"fork":false,"pushed_at":"2026-01-22T04:53:33.000Z","size":2093,"stargazers_count":10,"open_issues_count":12,"forks_count":1,"subscribers_count":9,"default_branch":"main","last_synced_at":"2026-01-22T10:16:34.343Z","etag":null,"topics":["aws","cli","ssm"],"latest_commit_sha":null,"homepage":"https://npmjs.com/@sudolabs-io/aws-ssm-cli","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sudolabs-io.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-09-29T07:14:22.000Z","updated_at":"2026-01-22T04:53:36.000Z","dependencies_parsed_at":"2025-04-24T23:34:20.665Z","dependency_job_id":"c2d179c1-095b-42e7-8508-9e2231698762","html_url":"https://github.com/sudolabs-io/aws-ssm-cli","commit_stats":{"total_commits":536,"total_committers":5,"mean_commits":107.2,"dds":0.6044776119402986,"last_synced_commit":"e2f045d60f13d4b05013f1c275d01a2179db769c"},"previous_names":[],"tags_count":156,"template":false,"template_full_name":null,"purl":"pkg:github/sudolabs-io/aws-ssm-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sudolabs-io%2Faws-ssm-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sudolabs-io%2Faws-ssm-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sudolabs-io%2Faws-ssm-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sudolabs-io%2Faws-ssm-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sudolabs-io","download_url":"https://codeload.github.com/sudolabs-io/aws-ssm-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sudolabs-io%2Faws-ssm-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28751499,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T09:58:17.166Z","status":"ssl_error","status_checked_at":"2026-01-25T09:55:56.104Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","cli","ssm"],"created_at":"2026-01-25T10:21:43.306Z","updated_at":"2026-01-25T10:21:43.352Z","avatar_url":"https://github.com/sudolabs-io.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AWS SSM CLI\n\nCommand line utility for managing environment variables in AWS Systems Manager Parameter Store.\n\n[npm]: https://npmjs.com/@sudolabs-io/aws-ssm-cli\n\n![release workflow](https://github.com/sudolabs-io/aws-ssm-cli/actions/workflows/release.yml/badge.svg) [![npm](https://img.shields.io/npm/v/@sudolabs-io/aws-ssm-cli)][npm] [![npm](https://img.shields.io/npm/dm/@sudolabs-io/aws-ssm-cli)][npm]\n\n## Examples\n\n### Push\n\nImagine having `.env` file with content:\n\n```\nDBNAME=postgres\nDBUSER=postgres\n```\n\nTo push environment variables into AWS SSM Parameter Store run:\n\n```\n$ ssm push --prefix=\"/\u003cproject\u003e/\u003cenvironment\u003e/\" --file=\".env\"\n   0 up-to-date\n ~ 0 updated\n + 2 created\n```\n\n### Pull\n\nPull environment variables from AWS SSM Parameter Store:\n\n```\n$ ssm pull --prefix=\"/\u003cproject\u003e/\u003cenvironment\u003e/\"\nDBNAME=postgres\nDBUSER=postgres\n```\n\nPull environment variables from AWS SSM Parameter Store as JSON:\n\n```\n$ ssm pull --prefix=\"/\u003cproject\u003e/\u003cenvironment\u003e/\" --json\n{ \"DBNAME\": \"postgres\", \"DBUSER\": \"postgres\" }\n```\n\nPull environment variables from AWS SSM Parameter Store as JSON object with predefined key:\n\n```\n$ ssm pull --prefix=\"/\u003cproject\u003e/\u003cenvironment\u003e/\" --json --group=\"environment_variables\"\n{ \"environment_variables\": { \"DBNAME\": \"postgres\", \"DBUSER\": \"postgres\" } }\n```\n\n### More\n\nShow help:\n\n```\n$ ssm --help\n```\n\nShow version:\n\n```\n$ ssm --version\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsudolabs-io%2Faws-ssm-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsudolabs-io%2Faws-ssm-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsudolabs-io%2Faws-ssm-cli/lists"}