ATT default cloud user | 17b1b97 | 2017-08-31 21:34:47 +0000 | [diff] [blame] | 1 | # |
| 2 | # The Controller domain |
| 3 | # |
| 4 | CONT_DOMAIN=simpledemo.onap.org |
| 5 | # |
| 6 | # The https port |
| 7 | # set to 0 if certificate is not ready |
| 8 | DMAAPBC_INT_HTTPS_PORT=0 |
| 9 | |
| 10 | # |
| 11 | # The path to the keystore for https |
| 12 | # |
| 13 | DMAAPBC_KSTOREFILE=/opt/app/dcae-certificates |
| 14 | |
| 15 | # The password for the https keystore |
| 16 | # |
| 17 | DMAAPBC_KSTOREPASS=foofoofoo |
| 18 | # |
| 19 | # The password for the private key in the https keystore |
| 20 | # |
| 21 | DMAAPBC_PVTKEYPASS=barbarbar |
| 22 | # |
| 23 | # Flag for whether we are using PG connection for persistence |
| 24 | # |
| 25 | DMAAPBC_PG_ENABLED=false |
| 26 | # |
| 27 | # The host for postgres access |
| 28 | # |
| 29 | DMAAPBC_PGHOST=zldciad1vipstg00.${CONT_DOMAIN} |
| 30 | # |
| 31 | # For postgres access |
| 32 | # |
| 33 | DMAAPBC_PGCRED=test234-ftl |
| 34 | # |
| 35 | # Name of this environment |
| 36 | # |
| 37 | DMAAPBC_INSTANCE_NAME=onap1 |
| 38 | # |
| 39 | # Name of DR prov server |
| 40 | # |
| 41 | DMAAPBC_DRPROV_FQDN=dcae-drps.${CONT_DOMAIN} |
| 42 | |
| 43 | ################# |
| 44 | # AAF Properties: |
| 45 | # |
| 46 | # regarding password encryption: |
| 47 | # In the dependencies that Maven retrieves (e.g., under dcae_dmaapbc/target/deps/ is a jar file cadi-core-version.jar. Generate the key file with: |
| 48 | # |
| 49 | # java \u2013jar wherever/cadi-core-*.jar keygen keyfilename |
| 50 | # chmod 400 keyfilename |
| 51 | # |
| 52 | # To encrypt a key: |
| 53 | # |
| 54 | # java \u2013jar wherever/cadi-core-*.jar digest password-to-encrypt keyfilename |
| 55 | # |
| 56 | # This will generate a string. Put \u201Cenc:\u201D on the front of the string, and put the result in this properties file. |
| 57 | # |
| 58 | # Location of the Codec Keyfile which is used to decrypt passwords in this properties file before they are passed to AAF |
| 59 | # |
| 60 | # REF: https://wiki.domain.notset.com/display/cadi/CADI+Deployment |
| 61 | # |
| 62 | # URL of AAF environment to use. |
| 63 | # |
| 64 | DMAAPBC_AAF_URL=https://aafapi.${CONT_DOMAIN}:8095/proxy/ |
| 65 | # |
| 66 | # TopicMgr mechid@namespace |
| 67 | # |
| 68 | DMAAPBC_TOPICMGR_USER=m99751@dmaapBC.onap.org |
| 69 | # |
| 70 | # TopicMgr password |
| 71 | # |
| 72 | DMAAPBC_TOPICMGR_PWD=enc:zyRL9zbI0py3rJAjMS0dFOnYfEw_mJhO |
| 73 | # |
| 74 | # Bus Controller Namespace Admin mechid@namespace |
| 75 | # |
| 76 | DMAAPBC_ADMIN_USER=m99501@dcae.onap.org |
| 77 | # |
| 78 | # Bus Controller Namespace Admin password |
| 79 | # |
| 80 | DMAAPBC_ADMIN_PWD=enc:YEaHwOJrwhDY8a6usetlhbB9mEjUq9m |
| 81 | |
| 82 | # |
| 83 | # endof AAF Properties |
| 84 | ################# |
| 85 | |
| 86 | ################# |
| 87 | # PolicyEngine Properties |
| 88 | |
| 89 | # |
| 90 | # Flag to turn on/off Authentication |
| 91 | DMAAPBC_PE_ENABLED=false |
| 92 | # |
| 93 | # Argument to decisionAttributes.put("AAF_ENVIRONMENT", X); |
| 94 | # where X is: TEST= UAT, PROD = PROD, DEVL = TEST |
| 95 | # |
| 96 | DMAAPBC_PE_AAF_ENV=DEMO |
| 97 | |
| 98 | # endof PolicyEngineProperties |
| 99 | ################# |