DMAAP-BC - Update Release Note Date
[dmaap/buscontroller.git] / dmaap-bc / misc / opensource.env
1 #
2 #
3 # ============LICENSE_START==========================================
4 # org.onap.dmaap
5 # ===================================================================
6 # Copyright © 2018 AT&T Intellectual Property. All rights reserved.
7 # ===================================================================
8 # Licensed under the Apache License, Version 2.0 (the "License");
9 # you may not use this file except in compliance with the License.
10 # You may obtain a copy of the License at
11 #
12 #        http://www.apache.org/licenses/LICENSE-2.0
13 #
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 # See the License for the specific language governing permissions and
18 # limitations under the License.
19 # ============LICENSE_END============================================
20 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
21 #
22 #
23 #       The Controller domain
24 #
25 CONT_DOMAIN=simpledemo.onap.org
26 #
27 #   The https port
28 #   set to 0 if certificate is not ready
29 DMAAPBC_INT_HTTPS_PORT=0
30
31 #
32 #       The path to the keystore for https
33 #
34 DMAAPBC_KSTOREFILE=/opt/app/dcae-certificates
35
36 #       The password for the https keystore
37 #
38 DMAAPBC_KSTOREPASS=foofoofoo
39 #
40 #       The password for the private key in the https keystore
41 #
42 DMAAPBC_PVTKEYPASS=barbarbar
43 #
44 #       Flag for whether we are using PG connection for persistence
45 #
46 DMAAPBC_PG_ENABLED=false
47 #
48 #       The host for postgres access
49 #
50 DMAAPBC_PGHOST=zldciad1vipstg00.${CONT_DOMAIN}
51 #
52 #       For postgres access
53 #
54 DMAAPBC_PGCRED=test234-ftl
55 #
56 #       Name of this environment
57 #
58 DMAAPBC_INSTANCE_NAME=onap1
59 #
60 #       Name of DR prov server
61 #
62 DMAAPBC_DRPROV_FQDN=dcae-drps.${CONT_DOMAIN}
63
64 #################
65 # AAF Properties:
66 #
67 # regarding password encryption:
68 # 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:
69 #
70 # java \u2013jar wherever/cadi-core-*.jar keygen keyfilename
71 # chmod 400 keyfilename
72 #
73 # To encrypt a key:
74 #
75 # java \u2013jar wherever/cadi-core-*.jar digest password-to-encrypt keyfilename
76 #
77 # This will generate a string.  Put \u201Cenc:\u201D on the front of the string, and put the result in this properties file.
78 #
79 # Location of the Codec Keyfile which is used to decrypt passwords in this properties file before they are passed to AAF
80 #
81 # REF: https://wiki.domain.notset.com/display/cadi/CADI+Deployment
82 #
83 # URL of AAF environment to use.
84 #
85 DMAAPBC_AAF_URL=https://aafapi.${CONT_DOMAIN}:8100/proxy/
86 #
87 # TopicMgr mechid@namespace
88 #
89 DMAAPBC_TOPICMGR_USER=m99751@dmaapBC.onap.org
90 #
91 # TopicMgr password
92
93 DMAAPBC_TOPICMGR_PWD=enc:zyRL9zbI0py3rJAjMS0dFOnYfEw_mJhO
94 #
95 # Bus Controller Namespace Admin  mechid@namespace
96 #
97 DMAAPBC_ADMIN_USER=m99501@dcae.onap.org
98 #
99 # Bus Controller Namespace Admin password
100 #
101 DMAAPBC_ADMIN_PWD=enc:YEaHwOJrwhDY8a6usetlhbB9mEjUq9m
102
103 #
104 # endof AAF Properties
105 #################
106
107 #################
108 # PolicyEngine Properties
109
110 #
111 # Flag to turn on/off Authentication
112 DMAAPBC_PE_ENABLED=false
113 #
114 # Argument to decisionAttributes.put("AAF_ENVIRONMENT", X); 
115 # where X is:  TEST= UAT, PROD = PROD, DEVL = TEST
116 #
117 DMAAPBC_PE_AAF_ENV=DEMO
118
119 # endof PolicyEngineProperties
120 #################