demorealm.json

221 lines | 8.126 kB Blame History Raw Download
{
    "id": "demo",
    "realm": "demo",
    "enabled": true,
    "accessTokenLifespan": 3000,
    "accessCodeLifespan": 10,
    "accessCodeLifespanUserAction": 6000,
    "sslRequired": "external",
    "registrationAllowed": false,
    "privateKey": "MIICXAIBAAKBgQCrVrCuTtArbgaZzL1hvh0xtL5mc7o0NqPVnYXkLvgcwiC3BjLGw1tGEGoJaXDuSaRllobm53JBhjx33UNv+5z/UMG4kytBWxheNVKnL6GgqlNabMaFfPLPCF8kAgKnsi79NMo+n6KnSY8YeUmec/p2vjO2NjsSAVcWEQMVhJ31LwIDAQABAoGAfmO8gVhyBxdqlxmIuglbz8bcjQbhXJLR2EoS8ngTXmN1bo2L90M0mUKSdc7qF10LgETBzqL8jYlQIbt+e6TH8fcEpKCjUlyq0Mf/vVbfZSNaVycY13nTzo27iPyWQHK5NLuJzn1xvxxrUeXI6A2WFpGEBLbHjwpx5WQG9A+2scECQQDvdn9NE75HPTVPxBqsEd2z10TKkl9CZxu10Qby3iQQmWLEJ9LNmy3acvKrE3gMiYNWb6xHPKiIqOR1as7L24aTAkEAtyvQOlCvr5kAjVqrEKXalj0Tzewjweuxc0pskvArTI2Oo070h65GpoIKLc9jf+UA69cRtquwP93aZKtW06U8dQJAF2Y44ks/mK5+eyDqik3koCI08qaC8HYq2wVl7G2QkJ6sbAaILtcvD92ToOvyGyeE0flvmDZxMYlvaZnaQ0lcSQJBAKZU6umJi3/xeEbkJqMfeLclD27XGEFoPeNrmdx0q10Azp4NfJAY+Z8KRyQCR2BEG+oNitBOZ+YXF9KCpH3cdmECQHEigJhYg+ykOvr1aiZUMFT72HU0jnmQe2FVekuG+LJUt2Tm7GtMjTFoGpf0JwrVuZN39fOYAlo+nTixgeW7X8Y=",
    "publicKey": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCrVrCuTtArbgaZzL1hvh0xtL5mc7o0NqPVnYXkLvgcwiC3BjLGw1tGEGoJaXDuSaRllobm53JBhjx33UNv+5z/UMG4kytBWxheNVKnL6GgqlNabMaFfPLPCF8kAgKnsi79NMo+n6KnSY8YeUmec/p2vjO2NjsSAVcWEQMVhJ31LwIDAQAB",
    "requiredCredentials": [ "password" ],
    "users" : [
        {
            "username" : "bburke@redhat.com",
            "enabled": true,
            "email" : "bburke@redhat.com",
            "firstName": "Bill",
            "lastName": "Burke",
            "credentials" : [
                { "type" : "password",
                    "value" : "password" }
            ],
            "realmRoles": [ "user" ],
            "applicationRoles": {
                "account": [ "manage-account" ]
            }
        },
        {
            "username" : "mposolda",
            "enabled": true,
            "email" : "mposolda@redhat.com",
            "firstName": "Marek",
            "lastName": "Posolda",
            "credentials" : [
                { "type" : "password",
                    "value" : "password" }
            ],
            "realmRoles": [ "user" ],
            "applicationRoles": {
                "account": [ "manage-account" ]
            }
        },
        {
            "username" : "topGroupUser",
            "enabled": true,
            "email" : "top@redhat.com",
            "credentials" : [
                { "type" : "password",
                    "value" : "password" }
            ],
            "groups": [
                "/top"
            ]
        },
        {
            "username" : "level2GroupUser",
            "enabled": true,
            "email" : "level2@redhat.com",
            "credentials" : [
                { "type" : "password",
                    "value" : "password" }
            ],
            "groups": [
                "/top/level2"
            ]
        }
    ],
    "roles" : {
        "realm" : [
            {
                "name": "user",
                "description": "User privileges"
            },
            {
                "name": "admin",
                "description": "Administrator privileges"
            }
        ]
    },
    "groups" : [
        {
            "name": "top",
            "attributes": {
                "topAttribute": ["true"]

            },
            "realmRoles": ["user"],
            "clientRoles": {
                "account": ["manage-account"]
            },
            "subGroups": [
                {
                    "name": "level2",
                    "realmRoles": ["admin"],
                    "attributes": {
                        "level2Attribute": ["true"]

                    }
                }
            ]
        }
    ],
    "scopeMappings": [
        {
            "client": "third-party",
            "roles": ["user"]
        },
        {
            "client": "customer-portal",
            "roles": ["user"]
        },
        {
            "client": "product-portal",
            "roles": ["user"]
        }

    ],
    "applications": [
        {
            "name": "customer-portal",
            "enabled": true,
            "directAccessGrantsEnabled": true,
            "adminUrl": "http://localhost:8081/customer-portal",
            "baseUrl": "http://localhost:8081/customer-portal",
            "redirectUris": [
                "http://localhost:8081/customer-portal/*"
            ],
            "secret": "password"
        },
        {
            "name": "customer-cookie-portal",
            "enabled": true,
            "baseUrl": "http://localhost:8081/customer-cookie-portal",
            "redirectUris": [
                "http://localhost:8081/customer-cookie-portal/*"
            ],
            "secret": "password"
        },
        {
            "name": "customer-portal-js",
            "enabled": true,
            "publicClient": true,
            "adminUrl": "http://localhost:8081/customer-portal-js",
            "baseUrl": "http://localhost:8081/customer-portal-js",
            "redirectUris": [
                "http://localhost:8080/customer-portal-js/*"
            ]
        },
        {
            "name": "customer-portal-cli",
            "enabled": true,
            "publicClient": true,
            "redirectUris": [
                "urn:ietf:wg:oauth:2.0:oob",
                "http://localhost"
            ]
        },
        {
            "name": "customer-portal-public",
            "enabled": true,
            "publicClient": true,
            "directAccessGrantsEnabled": true
        },
        {
            "name": "product-portal",
            "enabled": true,
            "adminUrl": "http://localhost:8081/product-portal",
            "baseUrl": "http://localhost:8081/product-portal",
            "redirectUris": [
                "http://localhost:8081/product-portal/*"
            ],
            "secret": "password"
        },
        {
            "name": "secure-portal",
            "enabled": true,
            "adminUrl": "http://localhost:8081/secure-portal",
            "baseUrl": "http://localhost:8081/secure-portal",
            "clientAuthenticatorType": "client-jwt",
            "redirectUris": [
                "http://localhost:8081/secure-portal/*"
            ],
            "attributes": {
                "jwt.credential.certificate": "MIICnTCCAYUCBgFPPLDaTzANBgkqhkiG9w0BAQsFADASMRAwDgYDVQQDDAdjbGllbnQxMB4XDTE1MDgxNzE3MjI0N1oXDTI1MDgxNzE3MjQyN1owEjEQMA4GA1UEAwwHY2xpZW50MTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIUjjgv+V3s96O+Za9002Lp/trtGuHBeaeVL9dFKMKzO2MPqdRmHB4PqNlDdd28Rwf5Xn6iWdFpyUKOnI/yXDLhdcuFpR0sMNK/C9Lt+hSpPFLuzDqgtPgDotlMxiHIWDOZ7g9/gPYNXbNvjv8nSiyqoguoCQiiafW90bPHsiVLdP7ZIUwCcfi1qQm7FhxRJ1NiW5dvUkuCnnWEf0XR+Wzc5eC9EgB0taLFiPsSEIlWMm5xlahYyXkPdNOqZjiRnrTWm5Y4uk8ZcsD/KbPTf/7t7cQXipVaswgjdYi1kK2/zRwOhg1QwWFX/qmvdd+fLxV0R6VqRDhn7Qep2cxwMxLsCAwEAATANBgkqhkiG9w0BAQsFAAOCAQEAKE6OA46sf20bz8LZPoiNsqRwBUDkaMGXfnob7s/hJZIIwDEx0IAQ3uKsG7q9wb+aA6s+v7S340zb2k3IxuhFaHaZpAd4CyR5cn1FHylbzoZ7rI/3ASqHDqpljdJaFqPH+m7nZWtyDvtZf+gkZ8OjsndwsSBK1d/jMZPp29qYbl1+XfO7RCp/jDqro/R3saYFaIFiEZPeKn1hUJn6BO48vxH1xspSu9FmlvDOEAOz4AuM58z4zRMP49GcFdCWr1wkonJUHaSptJaQwmBwLFUkCbE5I1ixGMb7mjEud6Y5jhfzJiZMo2U8RfcjNbrN0diZl3jB6LQIwESnhYSghaTjNQ=="
            }
        },
        {
            "name": "session-portal",
            "enabled": true,
            "adminUrl": "http://localhost:8081/session-portal",
            "baseUrl": "http://localhost:8081/session-portal",
            "redirectUris": [
                "http://localhost:8081/session-portal/*"
            ],
            "secret": "password"
        },
        {
            "name": "input-portal",
            "enabled": true,
            "adminUrl": "http://localhost:8081/input-portal",
            "baseUrl": "http://localhost:8081/input-portal",
            "redirectUris": [
                "http://localhost:8081/input-portal/*"
            ],
            "secret": "password"
        }
    ],
    "oauthClients": [
        {
            "name": "third-party",
            "enabled": true,
            "redirectUris": [
                "http://localhost:8081/oauth-client/*",
                "http://localhost:8081/oauth-client-cdi/*"
            ],
            "secret": "password"
        }
    ]
}