You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
kind: Ingressmetadata:
name: nginx-ingress-with-authannotations:
# type of authenticationnginx.ingress.kubernetes.io/auth-type: basic# name of the secret that contains the user/password definitionsnginx.ingress.kubernetes.io/auth-secret: basic-auth# message to display with an appropriate context why the authentication is requirednginx.ingress.kubernetes.io/auth-realm: 'Authentication Required - foo'
kind: Ingressmetadata:
labels:
app.kubernetes.io/name: alb-ingress-controllername: alb-ingress-controllerannotations:
# Authentication type as cognitoalb.ingress.kubernetes.io/auth-type: cognito# Specifies the set of user claims to be requested from the IDPalb.ingress.kubernetes.io/auth-scope: 'email openid'# Specifies the cognito idp configuration.alb.ingress.kubernetes.io/auth-idp-cognito: '{"UserPoolArn":"arn:aws:cognito-idp:us-west-2:xxx:userpool/xxx", "UserPoolClientId":"xxx", "UserPoolDomain":"xxx"}'
auth-type: oidc
kind: Ingressmetadata:
labels:
app.kubernetes.io/name: alb-ingress-controllername: alb-ingress-controllerannotations:
# Authentication type as oidcalb.ingress.kubernetes.io/auth-type: oidc# Specifies the set of user claims to be requested from the IDPalb.ingress.kubernetes.io/auth-scope: 'email openid'# Specifies the oidc idp configuration.alb.ingress.kubernetes.io/auth-idp-oidc: '{"Issuer":"xxx","AuthorizationEndpoint":"xxx","TokenEndpoint":"xxx","UserInfoEndpoint":"xxx","SecretName":"customizedSecretName"}'