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
Similar to #206
According to https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-conditions.html CF supports Conditions, and Fn::If is only one special way to use these conditions, for example they give in the docs:
NewVolume" : { "Type" : "AWS::EC2::Volume", "Condition" : "CreateProdResources", "Properties" : { "Size" : "100", "AvailabilityZone" : { "Fn::GetAtt" : [ "EC2Instance", "AvailabilityZone" ]} }
This resource would be conditionally created if CreateProdResources evaluates to true.
It appears we might need to support this in pulumi-cdk, together with the more specific Fn::If.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello!
Issue details
Similar to #206
According to https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-conditions.html CF supports Conditions, and Fn::If is only one special way to use these conditions, for example they give in the docs:
This resource would be conditionally created if CreateProdResources evaluates to true.
It appears we might need to support this in pulumi-cdk, together with the more specific Fn::If.
Affected area/feature
The text was updated successfully, but these errors were encountered: