-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
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
change isinstance AWSHelperFn to inspect class names #141
change isinstance AWSHelperFn to inspect class names #141
Conversation
This will allow for the internal AWSHelperFn class & its subclasses and troposphere AWSHelperFn class & its subclasses to be used as a value for all property values enabling the use of troposphere.Ref or similar to be used.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for implementing this solution. Could you add some positive and negative tests into the "tests" directory to validate proper functioning of it?
@markpeek would you be able to re-review now? |
I just ran into this same issue, with trying to use a As I think about this more, I wonder if awacs needs a reciprocal EDIT |
Any updates on getting this (or any other PR that addresses the issue) merged? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Thank you for adding the test and your patience for me getting it merged. |
This will allow for the internal
awacs.AWSHelperFn
class + subclasses andtroposphere.AWSHelperFn
class + subclasses to be used as a value for all properties enabling the use oftroposphere.Ref
or similar to be used.Resolves #139.