This message was deleted.
# atlantis-community
s
This message was deleted.
p
Oauth proxy on front of the ui
a lot of people do that
I used OIDC with Azure AD in AWS
a
I don’t see any documentation on native support for OIDC @PePe Amengual, is this something custom you have implemented ?
p
no is not on atlantis
is at the ALB level
the only auth for atlantis is basic no other method is available
mostly because is very easy to put any other auth on front with a proxy or Load balancer
a
Any documentation I can use. I have ALB and using NGINX Ingress as my proxy
I also have Azure AD so can use same for OIDC
p
no docs from atlantis since this not an atlantis feature
my tf module for alb supports OIDC and I had this inputs
Copy code
authentication_type: OIDC
authentication_oidc_client_id: "111111aaa"
authentication_oidc_client_secret: atlantis/AUTHENTICATION_OIDC_CLIENT_SECRET
authentication_oidc_issuer: "<https://login.microsoftonline.com/myappid/v2.0>"
authentication_oidc_authorization_endpoint: "<https://login.microsoftonline.com/myappid/oauth2/v2.0/authorize>"
authentication_oidc_token_endpoint: "<https://login.microsoftonline.com/myappid/oauth2/v2.0/token>"
authentication_oidc_user_info_endpoint: "<https://graph.microsoft.com/oidc/userinfo>"
a
p