diff --git a/diagrams/onprem/auth.py b/diagrams/onprem/auth.py new file mode 100644 index 0000000..1ece9e7 --- /dev/null +++ b/diagrams/onprem/auth.py @@ -0,0 +1,19 @@ +# This module is automatically generated by autogen.sh. DO NOT EDIT. + +from . import _OnPrem + + +class _Auth(_OnPrem): + _type = "auth" + _icon_dir = "resources/onprem/auth" + + +class BuzzfeedSso(_Auth): + _icon = "buzzfeed-sso.png" + + +class Oauth2Proxy(_Auth): + _icon = "oauth2-proxy.png" + + +# Aliases diff --git a/docs/nodes/onprem.md b/docs/nodes/onprem.md index 014a8fd..9689341 100644 --- a/docs/nodes/onprem.md +++ b/docs/nodes/onprem.md @@ -25,6 +25,11 @@ Node classes list of onprem provider. - **diagrams.onprem.analytics.Storm** - **diagrams.onprem.analytics.Tableau** +## onprem.auth + +- **diagrams.onprem.auth.BuzzfeedSso** +- **diagrams.onprem.auth.Oauth2Proxy** + ## onprem.cd - **diagrams.onprem.cd.Spinnaker** diff --git a/resources/onprem/auth/buzzfeed-sso.png b/resources/onprem/auth/buzzfeed-sso.png new file mode 100644 index 0000000..e135d39 Binary files /dev/null and b/resources/onprem/auth/buzzfeed-sso.png differ diff --git a/resources/onprem/auth/oauth2-proxy.png b/resources/onprem/auth/oauth2-proxy.png new file mode 100644 index 0000000..87b32c4 Binary files /dev/null and b/resources/onprem/auth/oauth2-proxy.png differ