AWSTemplateFormatVersion: "2010-09-09"
Resources:
Queue:
Type: AWS::SQS::Queue
Properties:
FifoQueue: false
Any update on this? This is a blocker for my team right now. Any viable workarounds/band-aids?
Any update on this? This is a blocker for my team right now. Any viable workarounds/band-aids?
Conditions:
IsFifo: !Equals [!Ref FifoQueue, "true"]
Resources:
Queue:
Type: AWS::SQS::Queue
Properties:
FifoQueue: !If [IsFifo, true, !Ref AWS::NoValue]
bump
is this a wont-fix? would be great to get an update on this
+1
Most helpful comment