Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rpstreef/terraform-aws-ssm-parameter-store
Terraform module for AWS Systems Manager Parameter Store
https://github.com/rpstreef/terraform-aws-ssm-parameter-store
Last synced: 1 day ago
JSON representation
Terraform module for AWS Systems Manager Parameter Store
- Host: GitHub
- URL: https://github.com/rpstreef/terraform-aws-ssm-parameter-store
- Owner: rpstreef
- License: apache-2.0
- Created: 2020-05-08T09:16:20.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-22T05:21:11.000Z (over 4 years ago)
- Last Synced: 2023-12-12T04:29:20.481Z (11 months ago)
- Language: HCL
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Terraform API Gateway Module
## About:
This Terraform module creates Systems Manager Parameters and uses standard prefixes ``environment`` and ``application_name`` for your parameters.
For instance:
``/dev/example/cognito_user_pool_arn``## How to use:
```terraform
module "ssm_parameters" {
source = "github.com/rpstreef/terraform-aws-ssm-parameter-store?ref=master"application_name = "example"
environment = "dev"parameters = {
"cognito_user_pool_arn" = {
"type" = "String"
"value" = module.cognito.cognito_user_pool_arn
},
"cognito_user_pool_client_id" = {
"type" = "String"
"value" = module.cognito.cognito_user_pool_client_id
},
"cognito_identity_pool_id" = {
"type" = "String"
"value" = module.cognito.cognito_identity_pool_id
}
}
}
```## Changelog
### v1.0
Initial release