Metadata-Version: 2.1
Name: sceptre-date-resolver
Version: 1.0.2
Summary: A Sceptre resolver to retrieve the current datetime
Home-page: https://github.com/sceptre/sceptre-date-resolversceptre-date-resolver
Author: zaro0508
Author-email: zaro0508@gmail.com
License: Apache2
Description: # Overview
        
        The purpose of this resolver is to retrieve the current datetime
        
        ## Install
        
        ```bash
        pip install sceptre-date-resolver
        ```
        
        ## Available Resolvers
        
        ### date
        
        Fetches the current datetime in an [ISO 8601 format](https://docs.python.org/3/library/time.html#time.strftime).
        The default format is "%Y-%m-%d %H:%M:%S".
        
        Syntax:
        
        ```yaml
        parameter|sceptre_user_data:
            <name>: !date
        ```
        
        Examples:
        
        Retrieve date (using default format) and pass it to a
        cloudformation parameter:
        ```yaml
        parameters:
            now: !date
        ```
        
        Retrieve the date (in MM/DD/YYYY format) and pass it to a
        cloudformation parameter:
        ```yaml
        parameters:
            now: !date "%m/%d/%Y"
        ```
        
        Retrieve the time (in H:M:S format) and pass it to a
        cloudformation parameter:
        ```yaml
        parameters:
            now: !date "%H:%M:%S"
        ```
        
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
