Metadata-Version: 2.1
Name: sceptre-aws-stackoutput-resolver
Version: 1.0.0
Summary: Sceptre AWS StackOuput Resolver
Home-page: https://github.com/sceptre/sceptre-aws-stackoutput-resolver
Author: Sceptre
Author-email: sceptre@cloudreach.com
License: Apache2
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
Requires-Dist: packaging (==16.8)
Provides-Extra: test
Requires-Dist: pytest (>=3.2) ; extra == 'test'

# StackOutput Resolver

Fetches the value of an output from a different Stack controlled by Sceptre.

Syntax:

```yaml
parameters | sceptre_user_data:
  <name>: !stack_output <stack_name>.yaml::<output_name>
```

Example:

```yaml
parameters:
  VpcIdParameter: !stack_output shared/vpc.yaml::VpcIdOutput
```

Sceptre infers that the Stack to fetch the output value from is a dependency,
and builds that Stack before the current one.

This resolver will add a dependency for the Stack in which needs the output
from.


