File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ This release includes several new features and optimizations and graduates (make
9
9
The user-facing areas that have seen the biggest improvements in this release are
10
10
11
11
* Lower MQTT and Web MQTT memory footprint per connection
12
+ * Reduced quorum queue memory footprint, improved throughput stability under load
12
13
* Classic queue message store memory efficiency and footprint predictability
13
14
* OAuth 2, OIDC, IDP support
14
15
@@ -140,7 +141,18 @@ in the `3.11.x` release series.
140
141
141
142
GitHub issues: [ #7443 ] ( https://github.com/rabbitmq/rabbitmq-server/pull/7443 )
142
143
143
- * There is now a way to pre-configure user permissions for newly created virtual hosts.
144
+ * There is now a way to pre-configure users and their permissions for newly created virtual hosts:
145
+
146
+ ``` ini
147
+ default_users.qa_user.vhost_pattern = qa.*
148
+ default_users.qa_user.tags = policymaker,monitoring
149
+ default_users.qa_user.password = fd237824441a78cd922410af4b83f0888186a8d7
150
+ default_users.qa_user.read = .*
151
+ default_users.qa_user.write = .*
152
+ default_users.qa_user.configure = .*
153
+ ```
154
+ This is primarily useful in environments where RabbitMQ is provided as a service but
155
+ customers (clients) have control over virtual hosts.
144
156
145
157
Contributed by @illotum (AWS).
146
158
You can’t perform that action at this time.
0 commit comments