-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathfeatureCatalog.yaml
More file actions
1249 lines (1198 loc) · 36.9 KB
/
featureCatalog.yaml
File metadata and controls
1249 lines (1198 loc) · 36.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
sections:
- id: empower
label: Empower
features:
- id: ff-expert
label: FlowFuse Expert
description: "AI-powered assistant that supports, enables, and speeds up workflows across FlowFuse and Node-RED, with access to MCP servers defined in your Node-RED instances through a single interface."
docsLink: /docs/user/expert
changelog:
- url: /changelog/2026/02/ff-expert-update-banner/
release: "2.28"
subfeature: false
solutions: [mes, scada, uns, edge-connectivity, it-ot-middleware, data-integration]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: true
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: null
enterprise:
value: "Contact Support to enable"
- id: ff-expert-support
label: Support Mode
description: "Chat-based assistance for FlowFuse and Node-RED, including Node-RED instance management through natural language."
docsLink: /docs/user/expert/chat/#support-mode
changelog:
- url: /changelog/2026/02/ff-expert-debug-log-context/
release: "2.28"
subfeature: true
solutions: [mes, scada, uns, edge-connectivity, it-ot-middleware, data-integration]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: true
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: null
enterprise:
value: true
dimmed: true
- id: ff-expert-insights
label: Insights Mode
beta: true
description: "Connects FlowFuse Expert to MCP servers in your Node-RED instances, enabling real-time data queries and actions through a single chat interface."
docsLink: /docs/user/expert/chat/#insights-mode
changelog: null
subfeature: true
solutions: [mes, scada, uns, edge-connectivity, it-ot-middleware, data-integration]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
tag: "Beta"
tagPrefix: "While in"
note: "Available during beta"
pro:
value: null
tag: "Beta"
tagPrefix: "While in"
note: "Available during beta"
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: null
enterprise:
value: true
dimmed: true
- id: nr-mcp-servers
label: Node-RED MCP Servers
description: "Build and expose MCP servers directly from Node-RED instances, making your data and actions available to FlowFuse Expert and other AI agents."
docsLink: /node-red/flowfuse/mcp/
changelog: null
subfeature: false
solutions: [mes, scada, uns, edge-connectivity, it-ot-middleware, data-integration]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
tag: "Beta"
tagPrefix: "During Insights Mode"
note: "Available during beta of Insights Mode"
pro:
value: null
tag: "Beta"
tagPrefix: "During Insights Mode"
note: "Available during beta of Insights Mode"
enterprise:
value: true
selfHosted:
starter:
value: null
tag: "Beta"
tagPrefix: "During Insights Mode"
note: "Available during beta of Insights Mode"
pro:
value: null
tag: "Beta"
tagPrefix: "During Insights Mode"
note: "Available during beta of Insights Mode"
enterprise:
value: true
- id: manage
label: Manage
features:
- id: nr-hosting
label: Node-RED Hosting
description: "FlowFuse hosts and manages Node-RED instances at any scale."
docsLink: /docs/user/introduction/#creating-a-node-red-instance
changelog: null
solutions: [mes, scada, uns, edge-connectivity, it-ot-middleware, data-integration]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: true
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: true
pro:
value: true
enterprise:
value: true
- id: hosted-instances
label: Hosted Instances
description: "Run Node-RED instances managed and hosted by FlowFuse."
docsLink: /docs/user/introduction/#creating-a-node-red-instance
changelog: null
solutions: [mes, scada, uns]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: true
note: "Starts with 2 hosted instances, 2 remote instances. Upgrades available up to 3 hosted / 3 remote instances."
pro:
value: true
note: "Starts with 5, shared with edge device count"
enterprise:
value: true
note: "Starts with 20, shared with edge device count"
selfHosted:
starter:
value: "5"
note: "Includes 5 hosted instances, shared with edge device count"
pro:
value: true
note: "Includes 5 hosted instances, shared with edge device count"
enterprise:
value: true
note: "Starts with 20, shared with edge device count"
- id: embedded-editor-tab-title
label: Embedded Editor Browser Tab Title
description: "The browser tab title updates to reflect the active Node-RED canvas tab when working in the embedded editor."
changelog:
- url: /changelog/2026/03/embedded-editor-tab-title/
release: "2.29"
subfeature: false
tags: [cloud, self-hosted]
cloud:
starter:
value: true
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: true
pro:
value: true
enterprise:
value: true
- id: edge-devices
label: Edge Devices
description: "Connect and manage edge devices running Node-RED at the network edge."
docsLink: /docs/device-agent/introduction/
changelog:
- url: /changelog/2026/02/device-agent-nodejs-options/
release: "2.28"
solutions: [mes, scada, edge-connectivity]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: true
note: "Includes 5 edge devices"
pro:
value: true
note: "Starts with 5, shared with hosted instance count"
enterprise:
value: true
note: "Starts with 20, shared with hosted instance count"
selfHosted:
starter:
value: "5"
note: "Includes 5 edge devices, shared with hosted instance count"
pro:
value: true
note: "Shared with hosted instance count"
enterprise:
value: true
note: "Starts with 20, shared with hosted instance count"
- id: snapshots
label: Snapshots
description: "Take point-in-time backups of your Node-RED instances and devices. Restore, promote between environments, or compare two snapshots side by side to see exactly what changed."
docsLink: /docs/user/snapshots/
changelog: null
subfeature: false
solutions: [mes, scada, uns, it-ot-middleware, data-integration]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: true
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: true
pro:
value: true
enterprise:
value: true
- id: snapshots-auto-remote
label: Auto Snapshot for Remote Instances
description: "Automatically capture a snapshot every time a remote instance is deployed, so you always have a recoverable history of what was running on each device."
docsLink: /docs/user/snapshots/#auto-snapshots
changelog: null
subfeature: true
solutions: [mes, scada, edge-connectivity]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: true
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: true
enterprise:
value: true
- id: snapshots-auto-hosted
label: Auto Snapshot for Hosted Instances
description: "Automatically capture a snapshot every time a hosted instance is deployed, so you always have a recoverable history of what was running."
docsLink: /docs/user/snapshots/#auto-snapshots
changelog: null
subfeature: true
solutions: [mes, scada, uns, it-ot-middleware, data-integration]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: true
enterprise:
value: true
- id: installation-support
label: Installation Support
description: null
docsLink: /docs/install/introduction/#do-you-need-help%3F-installation-service
changelog: null
solutions: []
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: true
enterprise:
value: true
- id: dedicated-support
label: Dedicated Success Management
description: null
docsLink: /handbook/sales/customer-success/
changelog: null
solutions: []
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: true
enterprise:
value: true
- id: live-chat-support
label: Live Chat Support
description: null
docsLink: null
changelog: null
solutions: []
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: null
enterprise:
value: true
- id: enterprise-support
label: Enterprise Support
description: null
docsLink: /docs/premium-support/
changelog: null
solutions: []
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: null
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: null
enterprise:
value: true
- id: custom-hostname
label: Custom Hostnames
description: "Access your Node-RED application via your own domain name."
docsLink: /docs/user/custom-hostnames/
changelog: null
solutions: []
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: null
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: null
enterprise:
value: true
- id: persistent-files
label: Persistent Files
description: "Store files persistently on the local file system of your Node-RED instance across restarts and upgrades."
docsLink: /docs/install/file-storage/
changelog: null
solutions: [mes, data-integration]
showOnPricing: true
tags: [cloud]
cloud:
starter:
value: "1 GB"
pro:
value: "10 GB"
enterprise:
value: "100 GB"
- id: persistent-context
label: Persistent Context
description: "In-memory values defined in a Node-RED flow persist across project restarts and upgrades."
docsLink: /docs/user/persistent-context/
changelog: null
solutions: [mes, data-integration]
showOnPricing: true
tags: [cloud]
cloud:
starter:
value: "10 MB"
pro:
value: "100 MB"
enterprise:
value: "1 GB"
- id: workflow-executions
label: Workflow Executions
description: null
docsLink: null
changelog: null
solutions: [mes, scada, uns, it-ot-middleware, data-integration]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: "Unlimited"
pro:
value: "Unlimited"
enterprise:
value: "Unlimited"
selfHosted:
starter:
value: "Unlimited"
pro:
value: "Unlimited"
enterprise:
value: "Unlimited"
- id: scale
label: Scale
features:
- id: mqtt-broker
label: MQTT Broker
description: "Manage and create MQTT clients to transport data for efficient messaging and communication within your applications."
docsLink: /docs/user/teambroker/
changelog: null
solutions: [uns, it-ot-middleware, data-integration, mes, scada]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: true
note: "Includes 5 clients. Additional clients can be purchased."
enterprise:
value: true
note: "Includes 20 clients. Additional clients can be purchased."
selfHosted:
starter:
value: null
pro:
value: null
enterprise:
value: true
note: "Includes 20 clients. Additional clients can be purchased."
- id: device-mgmt
label: Device Fleet Updates
description: "Connect to edge devices to quickly assess and update logic. Debug one device and roll out improvements to your fleet in minutes, securely without requiring full device access for your whole organisation."
docsLink: /docs/device-agent/introduction/
changelog: null
solutions: [mes, scada, edge-connectivity]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: true
pro:
value: true
enterprise:
value: true
- id: volume-pricing
label: Volume Pricing
description: "Customised volume discounts for use cases requiring hundreds or thousands of Node-RED instances."
docsLink: /contact-us
changelog: null
solutions: []
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: null
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: true
enterprise:
value: true
- id: edge-development
label: Edge Development
description: "Connect to an edge device and develop your Node-RED flows directly on the device."
docsLink: /docs/device-agent/quickstart/
changelog: null
solutions: [mes, scada, edge-connectivity]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: true
pro:
value: true
enterprise:
value: true
- id: immersive-editor-snapshots
label: Snapshot Details in Immersive Editor
description: "View and manage snapshot details directly inside the immersive editor without leaving your editing session."
docsLink: /docs/user/snapshots/
changelog:
- url: /changelog/2026/03/snapshot-detail-modal-immersive-editor/
release: '2.29'
solutions: [mes, scada, edge-connectivity]
showOnPricing: false
tags: [cloud, self-hosted]
cloud:
starter:
value: true
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: true
pro:
value: true
enterprise:
value: true
- id: immersive-editor-drawer
label: Customisable Immersive Editor Drawer
description: "Pin, move, resize, or full-screen the immersive editor drawer — your preferences are remembered between sessions."
docsLink: null
changelog:
- url: /changelog/2026/04/immersive-editor-drawer/
release: '2.30'
solutions: [mes, scada, edge-connectivity]
showOnPricing: false
tags: [cloud, self-hosted]
cloud:
starter:
value: true
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: true
pro:
value: true
enterprise:
value: true
- id: pipelines
label: DevOps Pipelines
description: "Set up different environments for development, testing, and production Node-RED instances to support a full software delivery lifecycle."
docsLink: /docs/user/devops-pipelines/
changelog: null
solutions: [mes, scada, uns, it-ot-middleware, data-integration]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: true
pro:
value: true
enterprise:
value: true
- id: snapshot-compare
label: Snapshot Comparison
description: "Compare two snapshots side-by-side with a navigable diff view — step through every changed, added, or deleted node and see property and code diffs."
docsLink: /docs/user/snapshots/
changelog:
- url: '/changelog/2026/04/snapshot-diff-viewer/'
release: '2.29'
solutions: [mes, scada, uns, it-ot-middleware, data-integration]
showOnPricing: false
tags: [cloud, self-hosted]
cloud:
starter:
value: true
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: true
pro:
value: true
enterprise:
value: true
- id: project-nodes
label: Seamless Data Stream
description: "FlowFuse Project Nodes enable the passing of data and messages between your Node-RED projects."
docsLink: /docs/user/projectnodes/
changelog: null
solutions: [uns, it-ot-middleware, data-integration]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: true
enterprise:
value: true
- id: private-npm-registry
label: Private NPM Registry
description: null
docsLink: /docs/user/custom-npm-packages/
changelog: null
solutions: [mes, scada, uns]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: null
enterprise:
value: true
- id: device-groups
label: Device Group Management
description: "Logically group devices assigned to an application and integrate device groups into your DevOps Pipeline for coordinated fleet updates."
docsLink: /docs/user/device-groups/
changelog: null
solutions: [mes, scada, edge-connectivity]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: null
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: null
enterprise:
value: true
- id: git-integration
label: Git Integration
description: "Back up your flows to a remote Git repository through a DevOps Pipeline. Supports GitHub and Azure DevOps repositories."
docsLink: /docs/user/devops-pipelines/#git-repository-stage
changelog: null
solutions: [mes, scada, uns, it-ot-middleware]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: null
enterprise:
value: true
- id: git-integration-github
label: GitHub
description: "Push and pull snapshots to GitHub repositories through DevOps Pipeline Git Stages."
docsLink: /docs/user/devops-pipelines/#git-repository-stage
changelog: null
subfeature: true
solutions: [mes, scada, uns, it-ot-middleware]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: null
enterprise:
value: true
- id: git-integration-azure
label: Azure DevOps
description: "Push and pull snapshots to Azure DevOps repositories through DevOps Pipeline Git Stages."
docsLink: /docs/user/devops-pipelines/#git-repository-stage
changelog:
- url: '/changelog/2026/03/azure-dev-ops-gitops'
release: '2.29'
subfeature: true
solutions: [mes, scada, uns, it-ot-middleware]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: null
enterprise:
value: true
- id: ha
label: High Availability
description: "Leverage horizontal scaling for reliable and scalable processing of your data through Node-RED."
docsLink: /docs/user/high-availability/
changelog: null
solutions: [mes, scada, uns]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: null
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: null
enterprise:
value: true
- id: performance
label: Performance Monitoring
description: "Monitor CPU and memory usage at the team level and instance level."
docsLink: null
changelog: null
solutions: [mes, scada]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: null
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: null
enterprise:
value: true
- id: tables
label: FlowFuse Tables
description: "Integrated database feature for storing, reading, writing, and querying data within FlowFuse."
docsLink: /docs/user/ff-tables/
changelog: null
solutions: [mes, scada, data-integration]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: null
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: null
enterprise:
value: true
- id: secure
label: Secure
features:
- id: audit-log
label: Audit Log
description: "Keep track of everything going on in your Node-RED instances and FlowFuse. Audit Logs provide details on what actions have taken place, when they happened, and who did them."
docsLink: /docs/user/logs/#audit-log
changelog: null
solutions: [mes, scada, uns, it-ot-middleware]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: true
pro:
value: true
enterprise:
value: true
- id: rbac
label: Role-Based Access Control
description: "Intuitive team management tooling makes it easy to control who has access to what across your FlowFuse organisation."
docsLink: /docs/user/role-based-access-control/
changelog: null
subfeature: false
solutions: [mes, scada, uns, it-ot-middleware, data-integration]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: true
pro:
value: true
enterprise:
value: true
selfHosted:
starter:
value: true
pro:
value: true
enterprise:
value: true
- id: rbac-application
label: Application-Level RBAC
description: "Fine-grained access control per application, allowing team members to have different permission levels across different applications without requiring separate teams."
docsLink: /docs/user/role-based-access-control/#application-level-rbac
changelog: null
subfeature: true
solutions: [mes, scada, uns, it-ot-middleware, data-integration]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: null
pro:
value: null
enterprise:
value: true
selfHosted:
starter:
value: null
pro:
value: null
enterprise:
value: true
- id: security
label: Endpoint Security
description: "Secure HTTP endpoints for hosted Node-RED instances using FlowFuse credentials."
docsLink: /docs/user/instance-settings/#security
changelog: null
solutions: [mes, scada, uns]
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: list
options: ["None", "HTTP Basic Auth"]
pro:
value: list
options: ["None", "HTTP Basic Auth", "FlowFuse Authentication"]
enterprise:
value: list
options: ["None", "HTTP Basic Auth", "FlowFuse Authentication"]
selfHosted:
starter:
value: list
options: ["None", "HTTP Basic Auth"]
pro:
value: list
options: ["None", "HTTP Basic Auth", "FlowFuse Authentication"]
enterprise:
value: list
options: ["None", "HTTP Basic Auth", "FlowFuse Authentication"]
- id: 2fa
label: Two-Factor Authentication
description: "Two-factor authentication adds an extra layer of security to your FlowFuse account."
docsLink: /docs/user/user-settings/#two-factor-authentication
changelog: null
solutions: []
showOnPricing: true
tags: [cloud, self-hosted]
cloud:
starter:
value: true
pro:
value: true
enterprise: