testrealm.json

186 lines | 6.013 kB Blame History Raw Download
{
    "realm": "demo",
    "enabled": true,
    "accessTokenLifespan": 60,
    "accessCodeLifespan": 60,
    "accessCodeLifespanUserAction": 300,
    "ssoSessionIdleTimeout": 600,
    "ssoSessionMaxLifespan": 36000,
    "passwordCredentialGrantAllowed": true,
    "sslNotRequired": true,
    "registrationAllowed": false,
    "social": false,
    "updateProfileOnInitialSocialLogin": 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" }
            ]
        },
        {
            "username" : "admin",
            "enabled": true,
            "email" : "admin@admin.com",
            "firstName": "Admin",
            "lastName": "Burke",
            "credentials" : [
                { "type" : "password",
                    "value" : "password" }
            ]
        }
    ],
    "roles" : {
        "realm" : [
            {
                "name": "user",
                "description": "User privileges"
            },
            {
                "name": "admin",
                "description": "Administrator privileges"
            }
        ]
    },
    "roleMappings": [
        {
            "username": "bburke@redhat.com",
            "roles": ["user"]
        },
        {
            "username": "admin",
            "roles": ["user","admin"]
        }
    ],
    "scopeMappings": [
        {
            "client": "third-party",
            "roles": ["user"]
        },
        {
            "client": "customer-portal",
            "roles": ["user", "admin" ]
        },
        {
            "client": "customer-portal-js",
            "roles": ["user"]
        },
        {
            "client": "customer-portal-cli",
            "roles": ["user"]
        },
        {
            "client": "angular-product",
            "roles": ["user"]
        },
        {
            "client": "product-portal",
            "roles": ["user", "admin" ]
        }

    ],
    "applications": [
        {
            "name": "customer-portal",
            "enabled": true,
            "adminUrl": "http://localhost:8080/customer-portal",
            "baseUrl": "http://localhost:8080/customer-portal",
            "redirectUris": [
                "http://localhost:8080/customer-portal/*"
            ],
            "secret": "password"
        },
        {
            "name": "customer-portal-js",
            "enabled": true,
            "publicClient": true,
            "baseUrl": "http://localhost:8080/customer-portal-js",
            "redirectUris": [
                "http://localhost:8080/customer-portal-js/*"
            ]
        },
        {
            "name": "angular-product",
            "enabled": true,
            "publicClient": true,
            "baseUrl": "http://localhost:8080/angular-product/index.html",
            "redirectUris": [
                "http://localhost:8080/angular-product/*"
            ]
        },
        {
            "name": "customer-portal-cli",
            "enabled": true,
            "publicClient": true,
            "redirectUris": [
                "urn:ietf:wg:oauth:2.0:oob",
                "http://localhost"
            ]
        },
        {
            "name": "product-portal",
            "enabled": true,
            "adminUrl": "http://localhost:8080/product-portal",
            "baseUrl": "http://localhost:8080/product-portal",
            "redirectUris": [
                "http://localhost:8080/product-portal/*"
            ],
            "secret": "password"
        }
    ],
    "oauthClients": [
        {
            "name": "third-party",
            "enabled": true,
            "redirectUris": [
                "http://localhost:8080/oauth-client/*",
                "http://localhost:8080/oauth-client-cdi/*"
            ],
            "secret": "password"
        },
        {
            "name": "admin-client",
            "enabled": true,
            "publicClient": true,
            "directGrantsOnly": true

        }
    ],
    "applicationRoleMappings": {
        "account": [
            {
                "username": "bburke@redhat.com",
                "roles": ["manage-account"]
            }
        ],
        "realm-management": [
            {
                "username": "admin",
                "roles": ["realm-admin"]
            }
        ]
    },
    "applicationScopeMappings": {
        "realm-management": [
            {
                "client": "admin-client",
                "roles": ["realm-admin"]
            },
            {
                "client": "customer-portal",
                "roles": ["realm-admin"]
            }
        ]
    }


}