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

feat(node): Add Fail2Ban in OnPrem security #683 #683

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,9 @@
"Rabbitmq": "RabbitMQ",
"Zeromq": "ZeroMQ",
},
"security": {
"Fail2Ban": "fail2ban",
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The class name should start with an uppercase letter. (Fail2ban)

},
"storage": {
"Ceph": "CEPH",
"CephOsd": "CEPH_OSD",
Expand Down
6 changes: 6 additions & 0 deletions diagrams/onprem/security.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ class Bitwarden(_Security):
_icon = "bitwarden.png"


class Fail2Ban(_Security):
_icon = "fail2ban.png"


class Trivy(_Security):
_icon = "trivy.png"

Expand All @@ -21,3 +25,5 @@ class Vault(_Security):


# Aliases

fail2ban = Fail2Ban
1 change: 1 addition & 0 deletions docs/nodes/onprem.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ Node classes list of onprem provider.
## onprem.security

- **diagrams.onprem.security.Bitwarden**
- **diagrams.onprem.security.Fail2Ban**, **fail2ban** (alias)
- **diagrams.onprem.security.Trivy**
- **diagrams.onprem.security.Vault**

Expand Down
Binary file added resources/onprem/security/fail2ban.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.