blob: 0f1744a9e43d19130f3db9018e3b830ddcc7bf09 [file] [log] [blame]
Jakub Latusekd71d26c2020-10-21 13:36:29 +02001{{/*
Michael Mokryafae9972019-03-11 14:46:34 -05002# ============LICENSE_START=======================================================
jhh999c2242021-02-24 12:10:02 -06003# Copyright (C) 2019-2021 AT&T Intellectual Property. All rights reserved.
Michael Mokryafae9972019-03-11 14:46:34 -05004# ================================================================================
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17# SPDX-License-Identifier: Apache-2.0
18# ============LICENSE_END=========================================================
Jakub Latusekd71d26c2020-10-21 13:36:29 +020019*/}}
Michael Mokryafae9972019-03-11 14:46:34 -050020{
HOCKLA26c00102019-11-15 15:54:03 -060021 "name": "XacmlPdpParameters",
22 "pdpGroup": "defaultGroup",
jhh999c2242021-02-24 12:10:02 -060023 "pdpType": "xacml",
Michael Mokry3b2647a2019-04-14 20:24:43 -050024 "restServerParameters": {
25 "host": "0.0.0.0",
26 "port": 6969,
Dominik Mizync88bcc92020-04-14 18:20:20 +020027 "userName": "${RESTSERVER_USER}",
28 "password": "${RESTSERVER_PASSWORD}",
amatthews736bf372021-12-14 16:04:15 +000029 "https": {{ (eq "true" (include "common.needTLS" .)) | ternary "true" "false" }},
jhhd74fe9f2021-04-15 11:04:39 -050030 "aaf": false,
31 "prometheus": true
Michael Mokry3b2647a2019-04-14 20:24:43 -050032 },
Jim Hahnc4762a62019-09-03 11:13:43 -040033 "policyApiParameters": {
jhhd74fe9f2021-04-15 11:04:39 -050034 "hostname": "policy-api",
Jim Hahnc4762a62019-09-03 11:13:43 -040035 "port": 6969,
Dominik Mizync88bcc92020-04-14 18:20:20 +020036 "userName": "${API_USER}",
37 "password": "${API_PASSWORD}",
amatthews736bf372021-12-14 16:04:15 +000038 "useHttps": {{ (eq "true" (include "common.needTLS" .)) | ternary "true" "false" }},
Jim Hahnc4762a62019-09-03 11:13:43 -040039 "aaf": false
40 },
jhhd74fe9f2021-04-15 11:04:39 -050041 "applicationParameters": {
42 "applicationPath": "/opt/app/policy/pdpx/apps"
43 },
jhhbf7fb4d2019-08-07 16:54:41 -050044 "topicParameterGroup": {
45 "topicSources" : [{
46 "topic" : "POLICY-PDP-PAP",
47 "servers" : [ "message-router" ],
amatthews736bf372021-12-14 16:04:15 +000048 "useHttps" : {{ (eq "true" (include "common.needTLS" .)) | ternary "true" "false" }},
jhha7dbd022020-07-13 10:55:47 -050049 "fetchTimeout" : 15000,
jhhbf7fb4d2019-08-07 16:54:41 -050050 "topicCommInfrastructure" : "dmaap"
51 }],
52 "topicSinks" : [{
53 "topic" : "POLICY-PDP-PAP",
54 "servers" : [ "message-router" ],
amatthews736bf372021-12-14 16:04:15 +000055 "useHttps" : {{ (eq "true" (include "common.needTLS" .)) | ternary "true" "false" }},
jhhbf7fb4d2019-08-07 16:54:41 -050056 "topicCommInfrastructure" : "dmaap"
57 }]
58 }
59}