Skip to content

Commit bc2970e

Browse files
authored
Add documentation about OPSS configuration for OIG and ODI (#1441)
1 parent 46f8cbd commit bc2970e

File tree

1 file changed

+66
-0
lines changed

1 file changed

+66
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
---
2+
title: "Modeling Oracle Platform Security Services"
3+
date: 2019-02-23T17:19:24-05:00
4+
draft: false
5+
weight: 6
6+
description: "Initializing OPSS configuration as part of WebLogic domain creation."
7+
---
8+
9+
10+
The `OPSSInitialization` section of the WDT model can be used to
11+
initialize credentials needed by upper-stack Fusion Middleware products. These credentials can only be applied at domain creation time.
12+
13+
#### Initializing Oracle Identity Governance
14+
15+
This example shows how to configure OPSS credentials for use by Oracle Identity Governance.
16+
17+
```yaml
18+
domainInfo:
19+
AdminUserName: '@@PROP:adminUser@@'
20+
AdminPassword: '@@PROP:adminPass@@'
21+
OPSSInitialization:
22+
Credential:
23+
oim:
24+
TargetKey:
25+
keystore:
26+
Username: keystore
27+
Password: '@@PROP:keystorePass@@'
28+
OIMSchemaPassword:
29+
# database schema prefix + _OIM
30+
Username: PREFIX_OIM
31+
# database schema password
32+
Password: '@@PROP:dbSchemaPass@@'
33+
sysadmin:
34+
Username: xelsysadm
35+
Password: '@@PROP:sysAdminPass@@'
36+
WeblogicAdminKey:
37+
# match to WLS admin credentials
38+
Username: '@@PROP:adminUser@@'
39+
Password: '@@PROP:adminPass@@'
40+
```
41+
42+
#### Initializing Oracle Data Integrator
43+
44+
This example shows how to configure OPSS credentials for use by Oracle Data Integrator.
45+
46+
```yaml
47+
domainInfo:
48+
AdminUserName: '@@PROP:adminUser@@'
49+
AdminPassword: '@@PROP:adminPass@@'
50+
RCUDbInfo:
51+
rcu_prefix: PREFIX
52+
rcu_admin_password: '@@PROP:dbAdminPass@@'
53+
# for ODI, the schema password has to be < 10 characters
54+
rcu_schema_password: '@@PROP:dbSchemaPass@@'
55+
rcu_db_conn_string: '@@PROP:dbConnect@@'
56+
# WORK_REPO_PASSWORD is the database schema password
57+
# SUPERVISOR_PASSWORD needs to match TargetKey password in credential
58+
rcu_variables: 'SUPERVISOR_PASSWORD=@@PROP:supvPass@@,WORK_REPO_PASSWORD=@@PROP:dbSchemaPass@@,WORK_REPOSITORY_TYPE=D,WORK_REPO_NAME=WORKREP,ENCRYPTION_ALGORITHM=AES-128'
59+
OPSSInitialization:
60+
Credential:
61+
oracle.odi.credmap:
62+
TargetKey:
63+
SUPERVISOR:
64+
Username: mySupervisor
65+
Password: '@@PROP:supvPass@@'
66+
```

0 commit comments

Comments
 (0)