diff options
author | Toine Siebelink <toine.siebelink@est.tech> | 2022-04-12 10:41:40 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-04-12 10:41:40 +0000 |
commit | dd54f2922099ed08992fb6544dfca7d66dfa4c59 (patch) | |
tree | bb25e092fed4222114ae89de4f7ececf3405ff82 /src/test/resources/application.yml | |
parent | 23bc326dde2667341e2c835929ef785ebd2ed834 (diff) | |
parent | 78e1d0616474d50d1b3d156e588c6cea9cba783d (diff) |
Merge "NCMP Kafka Producer Infrastructure"
Diffstat (limited to 'src/test/resources/application.yml')
-rw-r--r-- | src/test/resources/application.yml | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/test/resources/application.yml b/src/test/resources/application.yml index dc30c9da..344743b9 100644 --- a/src/test/resources/application.yml +++ b/src/test/resources/application.yml @@ -1,5 +1,5 @@ # ============LICENSE_START======================================================= -# Copyright (C) 2021 Nordix Foundation +# Copyright (C) 2021-2022 Nordix Foundation # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -21,6 +21,7 @@ rest: dmi-base-path: /dmi security: + permit-uri: /manage/**,/swagger-ui/**,/swagger-resources/**,/v3/api-docs auth: username: cpsuser password: cpsr0cks! @@ -43,3 +44,18 @@ dmi: service: url: some url for the dmi service +spring: + kafka: + bootstrap-servers: localhost:9092 + security: + protocol: PLAINTEXT + producer: + key-serializer: org.apache.kafka.common.serialization.StringSerializer + value-serializer: org.springframework.kafka.support.serializer.JsonSerializer + client-id: dmi-plugin + +app: + ncmp: + async-m2m: + topic: ncmp-async-m2m + |