Cloudformation-coverage-roadmap: AWS::SQS::Queue-FifoQueue: support false

Created on 7 Sep 2019  路  5Comments  路  Source: aws-cloudformation/cloudformation-coverage-roadmap

  1. Title ->AWS::SQS::Queue-FifoQueue
  2. Scope of request -> AWS::SQS::Queue-FifoQueue is not a valid property when not creating a FIFO queue. It should be able to be present if it is set to false.
  3. Expected behavior -> The template below should successfully create a regular SQS queue.
  4. Test case recommendation -> The template below fails with error "Unknown Attribute FifoQueue".
  5. Links to existing API doc: https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_CreateQueue.html
  6. Category tag -> Integration
  7. Any additional context: see template below
AWSTemplateFormatVersion: "2010-09-09"
Resources:
  Queue:
    Type: AWS::SQS::Queue
    Properties:
      FifoQueue: false
app integration bug?

Most helpful comment

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]

All 5 comments

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

Was this page helpful?
0 / 5 - 0 ratings

Related issues

grauj-aws picture grauj-aws  路  3Comments

rjpereira picture rjpereira  路  4Comments

hoegertn picture hoegertn  路  4Comments

seansummers picture seansummers  路  3Comments

tortila picture tortila  路  3Comments