Added descriptions to provision cards. (#619)
oliver-oat committed
Jan 23, 2026 at 14:33 UTC
aa04d293ddb616c5c3fe3e410abbf23635e380b3
1 file changed
+6
frontend/src/components/customers/provision/CustomerProvisionWizard.vue
+6
@@ -153,6 +153,9 @@
153
<n-form-item label="Deploy Wazuh Worker" path="provision_wazuh_worker">
154
<n-switch v-model:value="form.provision_wazuh_worker" clearable />
155
</n-form-item>
156
+ <div class="mt-2 text-sm text-gray-500">
157
+ Deploys a Wazuh worker node to collect and process security events from agents. The worker connects to the Wazuh master and forwards logs to the indexer.
158
+ </div>
159
</n-card>
160
<n-card class="grow">
161
<n-form-item label="Deploy HA Proxy" path="provision_ha_proxy">
@@ -162,6 +165,9 @@
165
:disabled="!form.provision_wazuh_worker"
166
/>
167
</n-form-item>
168
+ <div class="mt-2 text-sm text-gray-500">
169
+ Deploys an HA Proxy load balancer to distribute agents connections across multiple Wazuh workers. Provides high availability and fault tolerance for agent communication.
170
+ </div>
171
</n-card>
172
</div>
173