We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If two components, say A , and B have following defined
A - has an output defined as
# a.cfndsl.rb Output(:InstanceId) { Value(Ref(:Instance)) }
B - has an input defined as
# b.cfhighlander.rb Parameters { ComponentParam :InstanceId,'', type: 'String }
If C defines both A and B, output-input auto-wiring does not work. However if :InstanceId is replaced with 'InstanceId' this works.
:InstanceId
'InstanceId'
The text was updated successfully, but these errors were encountered:
toshke
No branches or pull requests
If two components, say A , and B have following defined
A - has an output defined as
B - has an input defined as
If C defines both A and B, output-input auto-wiring does not work. However if
:InstanceId
is replaced with'InstanceId'
this works.The text was updated successfully, but these errors were encountered: