Skip to content

Commit

Permalink
chore: 🤖 remove vt references
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRDias committed Nov 17, 2023
1 parent bf8e0ac commit 64ed536
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions config/serverless.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SECRETS_MANAGER_REGION: "eu-central-1"
EXCLUDE_CHARACTERS_USER: "$/`'\"\\"
EXCLUDE_CHARACTERS_PW: "/'\"\\"
EXCLUDE_CHARACTERS_NEW_PW: "@$/`'\"\\()"
LDAP_SERVER_LIST: '["ldaps://vt1dcsrv1001.vt1.example.com", "ldaps://vt1dcsrv1002.vt1.example.com"]'
LDAP_SERVER_LIST: '["ldaps://ex1dcsrv1001.ex1.example.com", "ldaps://ex1dcsrv1002.ex1.example.com"]'
LDAP_SERVER_PORT: "636"
LDAP_BASE_DN: "dc=vt1,dc=example,dc=com"
LDAP_BASE_DN: "dc=ex1,dc=example,dc=com"
LDAP_USER_AUTH_ATTRIBUTE: "userPrincipalName"
4 changes: 2 additions & 2 deletions config/serverless.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SECRETS_MANAGER_REGION: "eu-central-1"
EXCLUDE_CHARACTERS_USER: "$/`'\"\\"
EXCLUDE_CHARACTERS_PW: "/'\"\\"
EXCLUDE_CHARACTERS_NEW_PW: "@$/`'\"\\()"
LDAP_SERVER_LIST: '["ldaps://vt1dcsrv1001.vt1.example.com", "ldaps://vt1dcsrv1002.vt1.example.com"]'
LDAP_SERVER_LIST: '["ldaps://ex1dcsrv1001.ex1.example.com", "ldaps://ex1dcsrv1002.ex1.example.com"]'
LDAP_SERVER_PORT: "636"
LDAP_BASE_DN: "dc=vt1,dc=example,dc=com"
LDAP_BASE_DN: "dc=ex1,dc=example,dc=com"
LDAP_USER_AUTH_ATTRIBUTE: "userPrincipalName"
4 changes: 2 additions & 2 deletions config/serverless.qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SECRETS_MANAGER_REGION: "eu-central-1"
EXCLUDE_CHARACTERS_USER: "$/`'\"\\"
EXCLUDE_CHARACTERS_PW: "/'\"\\"
EXCLUDE_CHARACTERS_NEW_PW: "@$/`'\"\\()"
LDAP_SERVER_LIST: '["ldaps://vt1dcsrv1001.vt1.example.com", "ldaps://vt1dcsrv1002.vt1.example.com"]'
LDAP_SERVER_LIST: '["ldaps://ex1dcsrv1001.ex1.example.com", "ldaps://ex1dcsrv1002.ex1.example.com"]'
LDAP_SERVER_PORT: "636"
LDAP_BASE_DN: "dc=vt1,dc=example,dc=com"
LDAP_BASE_DN: "dc=ex1,dc=example,dc=com"
LDAP_USER_AUTH_ATTRIBUTE: "userPrincipalName"
4 changes: 2 additions & 2 deletions src/lambda_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@

LDAP_SERVER_LIST = (
os.environ.get("LDAP_SERVER_LIST")
or '["ldaps://vt1dcsrv1001.vt1.example.com", "ldaps://vt1dcsrv1002.vt1.example.com"]'
or '["ldaps://ex1dcsrv1001.ex1.example.com", "ldaps://ex1dcsrv1002.ex1.example.com"]'
)
LDAP_SERVER_PORT = os.environ.get("LDAP_SERVER_PORT") or "636"
LDAP_BASE_DN = os.environ.get("LDAP_BASE_DN") or "dc=vt1,dc=vitesco,dc=com"
LDAP_BASE_DN = os.environ.get("LDAP_BASE_DN") or "dc=ex1,dc=example,dc=com"
LDAP_USER_AUTH_ATTRIBUTE = (
os.environ.get("LDAP_USER_AUTH_ATTRIBUTE") or "userPrincipalName"
)
Expand Down

0 comments on commit 64ed536

Please sign in to comment.