pull/428/merge
Mohammed Almusaddar 8 months ago committed by GitHub
commit 8c62b6567b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -20,6 +20,7 @@ providers=(
"generic"
"openstack"
"outscale"
"hashicorp"
)
if ! [ -x "$(command -v round)" ]; then

@ -29,6 +29,7 @@ PROVIDERS = (
"generic",
"openstack",
"outscale",
"hashicorp",
)
#########################
@ -47,6 +48,7 @@ FILE_PREFIXES = {
"aws": ("Amazon-", "AWS-"),
"azure": ("Azure-",),
"digitalocean": (),
"hashicorp": (),
"gcp": ("Cloud-",),
"firebase": ("Cloud-",),
"ibm": (),
@ -104,6 +106,9 @@ TITLE_WORDS = {
"digitalocean": {
"digitalocean": "DigitalOcean"
},
"hashicorp": {
"hashicorp": "HashiCorp"
},
"openstack": {
"openstack": "OpenStack"
},
@ -411,6 +416,7 @@ ALIASES = {
}
},
"digitalocean": {},
"hashicorp": {},
"oci": {
"compute": {
"VM": "VirtualMachine",

@ -0,0 +1,12 @@
"""
HashiCorp provides a set of services for HashiCorp provider.
"""
from diagrams import Node
class _HashiCorp(Node):
_provider = "hashicorp"
_icon_dir = "resources/hashicorp"
fontcolor = "#ffffff"

@ -0,0 +1,23 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _HashiCorp
class _Applications(_HashiCorp):
_type = "applications"
_icon_dir = "resources/hashicorp/applications"
class Nomad(_Applications):
_icon = "nomad.png"
class Vagrant(_Applications):
_icon = "vagrant.png"
class Waypoint(_Applications):
_icon = "waypoint.png"
# Aliases

@ -0,0 +1,19 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _HashiCorp
class _Infrastructure(_HashiCorp):
_type = "infrastructure"
_icon_dir = "resources/hashicorp/infrastructure"
class Packer(_Infrastructure):
_icon = "packer.png"
class Terraform(_Infrastructure):
_icon = "terraform.png"
# Aliases

@ -0,0 +1,15 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _HashiCorp
class _Networking(_HashiCorp):
_type = "networking"
_icon_dir = "resources/hashicorp/networking"
class Consul(_Networking):
_icon = "consul.png"
# Aliases

@ -0,0 +1,19 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _HashiCorp
class _Security(_HashiCorp):
_type = "security"
_icon_dir = "resources/hashicorp/security"
class Boundary(_Security):
_icon = "boundary.png"
class Vault(_Security):
_icon = "vault.png"
# Aliases

@ -40,6 +40,10 @@ class Travisci(_Ci):
_icon = "travisci.png"
class Waypoint(_Ci):
_icon = "waypoint.png"
class Zuulci(_Ci):
_icon = "zuulci.png"

@ -20,6 +20,10 @@ class Awx(_Iac):
_icon = "awx.png"
class Packer(_Iac):
_icon = "packer.png"
class Puppet(_Iac):
_icon = "puppet.png"
@ -28,4 +32,8 @@ class Terraform(_Iac):
_icon = "terraform.png"
class Vagrant(_Iac):
_icon = "vagrant.png"
# Aliases

@ -12,6 +12,10 @@ class Bitwarden(_Security):
_icon = "bitwarden.png"
class Boundary(_Security):
_icon = "boundary.png"
class Trivy(_Security):
_icon = "trivy.png"

@ -0,0 +1,26 @@
---
id: hashicorp
title: HashiCorp
---
Node classes list of hashicorp provider.
## hashicorp.applications
- **diagrams.hashicorp.applications.Nomad**
- **diagrams.hashicorp.applications.Vagrant**
- **diagrams.hashicorp.applications.Waypoint**
## hashicorp.infrastructure
- **diagrams.hashicorp.infrastructure.Packer**
- **diagrams.hashicorp.infrastructure.Terraform**
## hashicorp.networking
- **diagrams.hashicorp.networking.Consul**
## hashicorp.security
- **diagrams.hashicorp.security.Boundary**
- **diagrams.hashicorp.security.Vault**

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

@ -137,6 +137,10 @@ def cleaner_openstack(f):
return f.lower()
def cleaner_hashicorp(f):
return f.lower()
cleaners = {
"onprem": cleaner_onprem,
"aws": cleaner_aws,
@ -154,6 +158,7 @@ cleaners = {
"outscale": cleaner_outscale,
"generic": cleaner_generic,
"openstack": cleaner_openstack,
"hashicorp": cleaner_hashicorp,
}

Loading…
Cancel
Save