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
94
+
that is generated by this plugin, you can pass raw CloudFormation
95
+
to the override config options outlined above.
96
+
97
+
The configuration must be provided with camel case keys,
98
+
but apart from that, you can use the CloudFormation config
99
+
as specified by AWS.
100
+
101
+
For example, if you wanted to override the maximumMessageSize for the main queue
102
+
you could find the "MaximumMessageSize" config option in the [AWS documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sqs-queues.html)
103
+
make the key camel case ("maximumMessageSize") and pass it into the override section:
0 commit comments