inputs:
   aaiEnrichmentHost:
     type: string
-    default: "aai.onap.svc.cluster.local"
+    default: "aai"
   aaiEnrichmentPort:
     type: integer
     default: 8443
   dmaap_host:
     type: string
     description: dmaap host
-    default: message-router.onap.svc.cluster.local
+    default: message-router
   dmaap_port:
     type: integer
     description: dmaap port
   host_port:
     description: port on Kubernetes host where PRH API will be exposed
     default: 0
+  secureEnableCert:
+    type: boolean
+    description: enable certificate base connection with AAI and DMaap
+    default: false
 node_templates:
   prh:
     properties:
         aai.aaiClientConfiguration.aaiIgnoreSslCertificateErrors: true
         aai.aaiClientConfiguration.aaiBasePath: "/aai/v12"
         aai.aaiClientConfiguration.aaiPnfPath: "/network/pnfs/pnf"
+        secure.configuration.keyFile: "/opt/app/prh/local/org.onap.prh.keyfile"
+        secure.configuration.trustStore: "/opt/app/prh/local/org.onap.prh.trust.jks"
+        secure.configuration.trustStorePassword: "change it"
+        secure.configuration.keyStore: "/opt/app/prh/local/org.onap.prh.p12"
+        secure.configuration.keyStorePassword: "change it"
+        secure.configuration.enableAaiCertAuth: { get_input: secureEnableCert }
+        secure.configuration.enableDmaapCertAuth: { get_input: secureEnableCert }
       host_port:
           { get_input: host_port }
       container_port:
           timeout: 1s
           type: http
       image:
-        get_input: tag_version
+        get_input: { get_input: tag_version }
       replicas: {get_input: replicas}
       name: 'dcae-prh'
       dns_name: 'dcae-prh'