summaryrefslogtreecommitdiff
path: root/deps/rabbitmq_auth_backend_oauth2/test/config_schema_SUITE_data/rabbitmq_auth_backend_oauth2.snippets
blob: 21aca91815a231c84b3e7de9742402d2ab53da92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[
  {oauth2_pem_config2,
       "auth_oauth2.resource_server_id = new_resource_server_id
        auth_oauth2.scope_prefix = new_resource_server_id.
        auth_oauth2.resource_server_type = new_resource_server_type
        auth_oauth2.additional_scopes_key = my_custom_scope_key
        auth_oauth2.preferred_username_claims.1 = user_name
        auth_oauth2.preferred_username_claims.2 = username
        auth_oauth2.preferred_username_claims.3 = email
        auth_oauth2.verify_aud = true
        auth_oauth2.default_key = id1
        auth_oauth2.signing_keys.id1 = test/config_schema_SUITE_data/certs/key.pem
        auth_oauth2.signing_keys.id2 = test/config_schema_SUITE_data/certs/cert.pem
        auth_oauth2.jwks_url = https://my-jwt-issuer/jwks.json
        auth_oauth2.https.cacertfile = test/config_schema_SUITE_data/certs/cacert.pem
        auth_oauth2.https.peer_verification = verify_none
        auth_oauth2.https.depth = 5
        auth_oauth2.https.fail_if_no_peer_cert = false
        auth_oauth2.https.hostname_verification = wildcard
        auth_oauth2.https.crl_check = true
        auth_oauth2.algorithms.1 = HS256
        auth_oauth2.algorithms.2 = RS256",
        [
        {rabbitmq_auth_backend_oauth2, [
            {resource_server_id,<<"new_resource_server_id">>},
            {scope_prefix,<<"new_resource_server_id.">>},
            {resource_server_type,<<"new_resource_server_type">>},
            {extra_scopes_source, <<"my_custom_scope_key">>},
            {preferred_username_claims, [<<"user_name">>, <<"username">>, <<"email">>]},
            {verify_aud, true},
            {key_config, [
            {default_key, <<"id1">>},
            {signing_keys,
                #{
                    <<"id1">> => {pem, <<"I'm not a certificate">>},
                    <<"id2">> => {pem, <<"I'm not a certificate">>}
                }
            },
            {jwks_url, "https://my-jwt-issuer/jwks.json"},
            {cacertfile, "test/config_schema_SUITE_data/certs/cacert.pem"},
            {peer_verification, verify_none},
            {depth, 5},
            {fail_if_no_peer_cert, false},
            {hostname_verification, wildcard},
            {crl_check, true},
            {algorithms, [<<"HS256">>, <<"RS256">>]}
            ]
            }
        ]}
        ],[]
  }
].