diff options
author | Michael Hwang <mhwang@research.att.com> | 2017-10-27 15:50:01 -0400 |
---|---|---|
committer | Michael Hwang <mhwang@research.att.com> | 2017-10-27 15:52:12 -0400 |
commit | 881b4c2be57358d941a6dfb50d1a4e4deb8fae38 (patch) | |
tree | d1bd97f38bd6b07512cf858f468b3670cbdc914f | |
parent | 59e51d37bf3fb72413fe395b117c415f3cea671f (diff) |
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 <mhwang@research.att.com>
-rw-r--r-- | blueprints/inventory.yaml-template | 11 |
1 files changed, 10 insertions, 1 deletions
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 |