Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Configuration to New Vulnerability Detector and Indexer #864

Closed
Dwordcito opened this issue Dec 14, 2023 · 1 comment · Fixed by #869
Closed

Update Configuration to New Vulnerability Detector and Indexer #864

Dwordcito opened this issue Dec 14, 2023 · 1 comment · Fixed by #869
Assignees
Labels
level/task Task issue type/enhancement Enhacement or new feature

Comments

@Dwordcito
Copy link
Member

Description:

This issue focuses on updating the configuration settings for the vulnerability detector and indexer modules to align with the new templates. The old configuration for vulnerability detection will be removed, and the settings will be replaced with those described in the following templates:

User Stories:

  • As a system administrator, I want the configuration to be up-to-date with the new vulnerability detection and indexing templates to ensure optimal functionality.
  • As a developer, I want to remove the old configuration settings and replace them with the new templates to maintain consistency and improve maintainability.

Tasks:

  1. Review New Configuration Templates:

    • Examine the provided vulnerability detector and indexer configuration templates thoroughly.
  2. Identify Old Configuration Settings:

    • Identify the old configuration settings that need to be removed.
  3. Replace Old Settings with New Templates:

    • Implement the new configuration settings from the provided templates.

Definition of Done:

  • The old configuration settings have been removed.
  • The new configuration settings from the provided templates have been implemented.
@teddytpc1 teddytpc1 added type/change Change requested level/task Task issue type/enhancement Enhacement or new feature and removed type/change Change requested labels Dec 14, 2023
@wazuhci wazuhci moved this to Triage in Release 4.8.0 Dec 14, 2023
@wazuhci wazuhci moved this from Triage to Backlog in Release 4.8.0 Dec 14, 2023
@vcerenu vcerenu self-assigned this Dec 15, 2023
@wazuhci wazuhci moved this from Backlog to In progress in Release 4.8.0 Dec 15, 2023
@vcerenu
Copy link
Member

vcerenu commented Dec 19, 2023

AIO Deployment

  # Configuration for Vulnerability detection
<vulnerability-detection>
  <enabled>yes</enabled>
  <index-status>yes</index-status>
  <feed-update-interval>yes</vulnerability_detection_feed_update_interval>
</vulnerability-detection>
# indexer configuration for vulnerability detection
<indexer>
  <enabled>yes</enabled>
  <hosts>
    <host>https://127.0.0.1:9200</host>
  </hosts>
  <username>admin</username>
  <password>admin</password>
  <ssl>
    <certificate_authorities>
      <ca>/etc/filebeat/certs/root-ca.pem</ca>
    </certificate_authorities>
    <certificate>/etc/filebeat/certs/filebeat.pem</certificate>
    <key>/etc/filebeat/certs/filebeat-key.pem</key>
  </ssl>
</indexer>

Distributed deployment

  # Configuration for Vulnerability detection
<vulnerability-detection>
  <enabled>yes</enabled>
  <index-status>yes</index-status>
  <feed-update-interval>yes</vulnerability_detection_feed_update_interval>
</vulnerability-detection>
# indexer configuration for vulnerability detection
<indexer>
  <enabled>yes</enabled>
  <hosts>
    <host>https://192.168.0.10:9200</host>
    <host>https://192.168.0.11:9200</host>
    <host>https://192.168.0.12:9200</host>
  </hosts>
  <username>admin</username>
  <password>admin</password>
  <ssl>
    <certificate_authorities>
      <ca>/etc/filebeat/certs/root-ca.pem</ca>
    </certificate_authorities>
    <certificate>/etc/filebeat/certs/filebeat.pem</certificate>
    <key>/etc/filebeat/certs/filebeat-key.pem</key>
  </ssl>
</indexer>

@wazuhci wazuhci moved this from In progress to Pending review in Release 4.8.0 Dec 19, 2023
@wazuhci wazuhci moved this from Pending review to Done in Release 4.8.0 Dec 19, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
level/task Task issue type/enhancement Enhacement or new feature
Projects
No open projects
Status: Done
3 participants