Metadata-Version: 2.1
Name: sceptre-ssm-resolver
Version: 1.1.0
Summary: A Sceptre resolver to retrieve data from the AWS secure store
Home-page: https://github.com/sceptre/sceptre-ssm-resolver
Author: zaro0508
Author-email: zaro0508@gmail.com
License: Apache2
Description: ---
        layout: docs
        title: Resolvers
        ---
        
        # Overview
        
        The purpose of this resolver is to retrieve values from the AWS SSM. 
        
        ## Available Resolvers
        
        ### ssm
        
        Fetches the value stored in AWS SSM Parameter Store.
        
        Syntax:
        
        ```yaml
        parameter|sceptre_user_data:
            <name>: !ssm /prefix/param
        ```
        
        #### Example:
        
        Add a secure string to the SSM parameter store
        ```
        aws ssm put-parameter --name /dev/DbPassword --value "mysecret" \
        --key-id alias/dev/kmskey --type "SecureString"
        ```
        
        Setup sceptre template to retrieve and decrypt from parameter store
        ```
        parameters:
            database_password: !ssm /dev/DbPassword
        ```
        
        Run sceptre with a user or role that has access to the secret.
        Sceptre will retrieve "mysecret" from the parameter store and passes
        it to the cloudformation _database_password_ paramter.
        
Keywords: sceptre,sceptre-resolver
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Environment :: Console
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Provides-Extra: test
