From f89b8e281fd5659e458f8d6b916002733b7d95d0 Mon Sep 17 00:00:00 2001 From: Harm Meijer <59024438+harm-meijer@users.noreply.github.com> Date: Wed, 16 Oct 2024 13:14:22 +0200 Subject: [PATCH] IM 1037 global config (#89) * feat(templates): add example global configuration * fix(templates): prettier formatting removing whitespace * Update application-templates/javascript/connect.yaml Co-authored-by: PRAVEEN KUMAR VENKATESHAPPA <72923003+praveenkumarct@users.noreply.github.com> * Update application-templates/javascript/connect.yaml Co-authored-by: PRAVEEN KUMAR VENKATESHAPPA <72923003+praveenkumarct@users.noreply.github.com> --------- Co-authored-by: diegodeleonfagundez <108401418+diegodeleonfagundez@users.noreply.github.com> Co-authored-by: PRAVEEN KUMAR VENKATESHAPPA <72923003+praveenkumarct@users.noreply.github.com> --- application-templates/javascript/connect.yaml | 10 ++++++++++ application-templates/typescript/connect.yaml | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/application-templates/javascript/connect.yaml b/application-templates/javascript/connect.yaml index ab26517..013c589 100644 --- a/application-templates/javascript/connect.yaml +++ b/application-templates/javascript/connect.yaml @@ -88,3 +88,13 @@ deployAs: # - key: ENTRY_POINT_URI_PATH # description: The Application entry point URI path identified during registration of Custom Application # required: true +inheritAs: + configuration: + securedConfiguration: + - key: GLOBAL_SECURED_CONFIGURATION + description: This secured configuration will be applied to all applications + required: true + standardConfiguration: + - key: GLOBAL_STANDARD_CONFIGURATION + description: This standard configuration will be applied to all applications + required: true \ No newline at end of file diff --git a/application-templates/typescript/connect.yaml b/application-templates/typescript/connect.yaml index 2631a22..bdfcdad 100644 --- a/application-templates/typescript/connect.yaml +++ b/application-templates/typescript/connect.yaml @@ -88,3 +88,13 @@ deployAs: # - key: ENTRY_POINT_URI_PATH # description: The Application entry point URI path identified during registration of Custom Application # required: true +inheritAs: + configuration: + securedConfiguration: + - key: GLOBAL_SECURED_CONFIGURATION + description: This secured configuration will configuration will be applied to all applications + required: true + standardConfiguration: + - key: GLOBAL_STANDARD_CONFIGURATION + description: This standard configuration will configuration will be applied to all applications + required: true \ No newline at end of file