Last active
May 5, 2020 18:53
-
-
Save rickalm/61b9260d5b24e28272cdf7dd9c558658 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Parameters: | |
CfnDebug: | |
Description: Enable Debug Mode | |
Type: String | |
AllowedValues: [ "true", "false" ] | |
Default: "true" | |
Conditions: | |
isFalse: !Equals [ 'true', 'false' ] | |
isDebug: !Equals [ 'true', !Ref CfnDebug ] | |
Resources: | |
CfnInit: | |
Type: 'Custom::NullResource' | |
Condition: isFalse | |
Outputs: | |
Success: | |
Value: True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment