Welcome to mirror list, hosted at ThFree Co, Russian Federation.

constants.js « token_access « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fb2128462f0df5822880615d376848641e4987e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { helpPagePath } from '~/helpers/help_page_helper';

export const LIMIT_JWT_ACCESS_SNIPPET = `job_name:
  id_tokens:
    ID_TOKEN_1: # or any other name
      aud: "..." # sub-keyword to configure the token's audience
  secrets:
    TEST_SECRET:
      vault: db/prod
`;

export const OPT_IN_JWT_HELP_LINK = helpPagePath('ci/secrets/id_token_authentication', {
  anchor: 'automatic-id-token-authentication-with-hashicorp-vault',
});