Get cloudformation evaluated condition value – Amazon Web Sevices
Is it possible to know how cloudformation evaluated a condition? I have this stack: Parameters: BucketName: Default: '' Type: String Conditions: CreateBucket: !Not - !Equals - !Ref BucketName - 'skip' Resources: Bucket: Type: 'AWS::S3::Bucket' Condition: CreateBucket I tried to create…