From 881b4c2be57358d941a6dfb50d1a4e4deb8fae38 Mon Sep 17 00:00:00 2001 From: Michael Hwang Date: Fri, 27 Oct 2017 15:50:01 -0400 Subject: Add insecure params in inventory bp Make sdc-secure-connection booleans into optional inputs Change-Id: I2bc34a092284ef703fd4401edf99d21a8903a9e4 Issue-Id: DCAEGEN2-183 Signed-off-by: Michael Hwang --- blueprints/inventory.yaml-template | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/blueprints/inventory.yaml-template b/blueprints/inventory.yaml-template index 7e209d9..4da253c 100644 --- a/blueprints/inventory.yaml-template +++ b/blueprints/inventory.yaml-template @@ -48,6 +48,14 @@ inputs: description: SDC password asdc_environment_name: description: SDC environment name + asdc_use_secure_https: + description: Boolean to toggle whether to do certificate validation for https calls to SDC API + type: boolean + default: false + asdc_use_https_dmaap: + description: Boolean to toggle whether to use https for calls to message router API + type: boolean + default: false postgres_user_inventory: description: Postgres user for inventory @@ -79,7 +87,8 @@ node_templates: environmentName: { get_input: asdc_environment_name } keyStorePath: keyStorePassword: - activateServerTLSAuth: false + activateServerTLSAuth: { get_input: asdc_use_secure_https } + useHttpsWithDmaap: { get_input: asdc_use_https_dmaap } isFilterInEmptyResources: false dcaeInventoryClient: uri: http://inventory:8080 -- cgit 1.2.3-korg