aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/pomba/charts/pomba-validation-service/resources/appconfig/auth_policy.json
blob: ea5565a71eb5d8ea9e96e20e676d51c093809287 (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
{"roles": [
    {
        "name": "admin",
        "functions": [
            {
                "name": "actions",
                "methods": [
                    {"name": "GET"},
                    {"name": "DELETE"},
                    {"name": "PUT"}
                ]
            },
            {
                "name": "validate",
                "methods": [{"name": "POST"}]
            }
        ],
        "users": [
            {"username": "CN=common-name, OU=org-unit, O=org, L=location, ST=state, C=US"},
            {"username": "CN=test, OU=qa, O=Test Ltd, L=London, ST=London, C=GB"},
            {"username": "CN=aai-client.dev.att.com, OU=aai digicert client dev, O=\"AT&T Services, Inc.\", L=Dallas, ST=Texas, C=US"}
        ]
    },
    {
        "name": "ops",
        "functions": [{
            "name": "actions",
            "methods": [{"name": "POST"}]
        }],
        "users": [
            {"username": "CN=common-name, OU=org-unit, O=org, L=location, ST=state, C=US"},
            {"username": "CN=test, OU=qa, O=Test Ltd, L=London, ST=London, C=GB"}
        ]
    },
    {
        "name": "basicauth",
        "functions": [{
            "name": "util",
            "methods": [{"name": "GET"}]
        }],
        "users": [{
            "user": "aai",
            "pass": "OBF:1u2a1t2v1vgb1s3g1s3m1vgj1t3b1u30"
        }]
    }
]}