-
-
Save adilosa/c25de0934554ecf20daccccd1347ec13 to your computer and use it in GitHub Desktop.
Get a parameter stored in AWS Systems Manager Parameter Store
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import boto3 | |
| def getParameter(param_name): | |
| return boto3.client('ssm').get_parameter(Name=param_name)['Parameter']['Value'] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment