{"id":23744537,"url":"https://github.com/hazelops/terraform-aws-ssm-parameters","last_synced_at":"2026-02-03T13:06:57.183Z","repository":{"id":267709368,"uuid":"896024525","full_name":"hazelops/terraform-aws-ssm-parameters","owner":"hazelops","description":"Consistent way to manage service SSM parameters.","archived":false,"fork":false,"pushed_at":"2024-12-30T10:53:00.000Z","size":81,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-30T16:55:01.518Z","etag":null,"topics":["devops","terraform","terraform-module"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hazelops.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-11-29T11:49:26.000Z","updated_at":"2024-12-30T10:52:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"b7b3be3b-e1d1-45fd-b82a-cc2d6ec26af4","html_url":"https://github.com/hazelops/terraform-aws-ssm-parameters","commit_stats":null,"previous_names":["hazelops/terraform-aws-ssm-parameters"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/hazelops/terraform-aws-ssm-parameters","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hazelops%2Fterraform-aws-ssm-parameters","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hazelops%2Fterraform-aws-ssm-parameters/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hazelops%2Fterraform-aws-ssm-parameters/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hazelops%2Fterraform-aws-ssm-parameters/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hazelops","download_url":"https://codeload.github.com/hazelops/terraform-aws-ssm-parameters/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hazelops%2Fterraform-aws-ssm-parameters/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29046503,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T10:09:22.136Z","status":"ssl_error","status_checked_at":"2026-02-03T10:09:16.814Z","response_time":96,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["devops","terraform","terraform-module"],"created_at":"2024-12-31T12:24:08.373Z","updated_at":"2026-02-03T13:06:57.118Z","avatar_url":"https://github.com/hazelops.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Terraform AWS SSM Parameters Module\n[![Tests](https://github.com/automationd/atun/actions/workflows/tests.yml/badge.svg)](https://github.com/AutomationD/atun/actions/workflows/tests.yml)\n\nThe main goal of the module is to provide a consistent way to manage service SSM parameters. Suitable for use with [External Secrets](https://external-secrets.io/latest/).\n\n\nThis module manages parameters in AWS SSM Parameter Store.\n\nThis module is capable of taking strings as a values. If you need to store something in a different format, please convert it to a string. \nStrings are stored as SecureString (Standard Tier) with maximum size `4 KB`. \nSee limitations on tiers in [Managing parameter Tiers](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html)\n\nFor proper usage, refer to the example in this guide and the [Examples](./examples) folder.\n\n## Usage example:\n\n```terraform\nmodule \"krabby\" {\n  source = \"hazelops/terraform-aws-ssm-parameters/aws\"\n  name   = \"krabby\"\n  env    = \"dev\"\n\n  parameters = {\n    API_KEY = \"api-XXXXXXXXXXXXXXXXXXXXX\",\n    S3_BUCKET_ARN = \"arn:aws:s3:::dev-krabby\",\n    S3_BUCKET_NAME = \"dev-krabby\"\n  }\n}\n```\nParameters in above example will be stored into the following paths:\n```text\n/dev/krabby/API_KEY\n/dev/krabby/S3_BUCKET_ARN\n/dev/krabby/S3_BUCKET_NAME\n```\n\n\n\u003c!-- BEGIN_TF_DOCS --\u003e\n## Requirements\n\n| Name | Version |\n|------|---------|\n| \u003ca name=\"requirement_terraform\"\u003e\u003c/a\u003e [terraform](#requirement\\_terraform) | \u003e=1.2.0 |\n| \u003ca name=\"requirement_aws\"\u003e\u003c/a\u003e [aws](#requirement\\_aws) | \u003e=4.30.0 |\n\n## Providers\n\n| Name | Version |\n|------|---------|\n| \u003ca name=\"provider_aws\"\u003e\u003c/a\u003e [aws](#provider\\_aws) | \u003e=4.30.0 |\n\n## Modules\n\nNo modules.\n\n## Resources\n\n| Name | Type |\n|------|------|\n| [aws_ssm_parameter.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ssm_parameter) | resource |\n\n## Inputs\n\n| Name | Description | Type | Default | Required |\n|------|-------------|------|---------|:--------:|\n| \u003ca name=\"input_env\"\u003e\u003c/a\u003e [env](#input\\_env) | Environment name | `string` | n/a | yes |\n| \u003ca name=\"input_name\"\u003e\u003c/a\u003e [name](#input\\_name) | Name of the service | `string` | n/a | yes |\n| \u003ca name=\"input_parameters\"\u003e\u003c/a\u003e [parameters](#input\\_parameters) | Map of SSM ParameterStore parameters to store - by default, /$var.env/$var.name/* | `map(string)` | n/a | yes |\n\n## Outputs\n\n| Name | Description |\n|------|-------------|\n| \u003ca name=\"output_ssm_parameter_paths\"\u003e\u003c/a\u003e [ssm\\_parameter\\_paths](#output\\_ssm\\_parameter\\_paths) | A list of paths to created parameters |\n\u003c!-- END_TF_DOCS --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhazelops%2Fterraform-aws-ssm-parameters","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhazelops%2Fterraform-aws-ssm-parameters","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhazelops%2Fterraform-aws-ssm-parameters/lists"}