lulo stack properties is a plugin for lulo. Given a CloudFormation StackName or StackID it responds with the Parameters, Outputs and Resources of the Stack.
npm install lulo-plugin-stack-propertieslulo stack properties is a plugin for lulo.
Given a CloudFormation StackName or StackID it responds with the Parameters, Outputs and Resources of the Stack.
$ npm install lulo-plugin-stack-properties --save
`Usage
$3
* StackName: Name or ID of the Stack you want to describe. Required$3
The resource will return every Parameter, Output and Resource of the stack.
Each return value can be access using the intrinsic function "Fn::GetAtt".#### Parameters
{ "Fn::GetAtt: ["ResourceName", "Parameter.{ParameterKey}] }"
Gives PropertyValue#### Outputs
{ "Fn::GetAtt: ["ResourceName", "Output.{OutputKey}] }"
Gives OutputValue#### Resources
{ "Fn::GetAtt: ["ResourceName", "Resources.{ResourceLogicalId}] }"
Gives ResourcePhysicalId$3
The Custom Resource Lambda requires the following permissions for this plugin to work:
`yaml
Sid: 'LuloPluginStackProperties'
Action:
- 'cloudformation:DescribeStacks'
- 'cloudformation:DescribeStackResources'
Effect: 'Allow'
Resource: '*'
``