You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- We keep having to add new options to the config when someone needs to use an option in the CloudFormation template we haven't mapped yet
- This should future proof the plugin to allow users to just pass whatever they need through to override the generated template
- Eventually we could also deprecate and remove some of the other options that could just be overrides
- Fixes#213
If you would like to override a part of the CloudFormation template
96
+
that is generated by this plugin, you can pass raw CloudFormation
97
+
to the override config options outlined above.
98
+
99
+
The configuration must be provided with camel case keys,
100
+
but apart from that, you can use the CloudFormation config
101
+
as specified by AWS.
102
+
103
+
For example, if you wanted to override the maximumMessageSize for the main queue
104
+
you could find the "MaximumMessageSize" config option in the [AWS documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html)
105
+
make the key camel case ("maximumMessageSize") and pass it into the override section:
0 commit comments