diff options
author | xuegao <xue.gao@intl.att.com> | 2020-12-18 10:37:23 +0100 |
---|---|---|
committer | Xue Gao <xue.gao@intl.att.com> | 2021-01-19 15:32:33 +0000 |
commit | a856d54c8df7bf3a0212b4c7fd8f18a6a6b91449 (patch) | |
tree | f4a5b2a4ef5cc2865282b108bd2103778d7fb9e3 /catalog-be/sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/attributes | |
parent | 27fa75194efcf77c93b645ef7b412668ac3f5d38 (diff) |
Add basic auth header
Add basic auth header for sdc-backend-init python scripts.
Issue-ID: OJSI-273
Signed-off-by: xuegao <xue.gao@intl.att.com>
Change-Id: I3559d5792509db0f65b202a731545083c7c91c96
Signed-off-by: xuegao <xue.gao@intl.att.com>
Diffstat (limited to 'catalog-be/sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/attributes')
-rw-r--r-- | catalog-be/sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/attributes/default.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/catalog-be/sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/attributes/default.rb b/catalog-be/sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/attributes/default.rb index 792d600548..682885312e 100644 --- a/catalog-be/sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/attributes/default.rb +++ b/catalog-be/sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/attributes/default.rb @@ -1 +1,5 @@ -# +#BasicAuth +default['basic_auth']['enabled'] = true +default['basic_auth'][:user_name] = "testName" +default['basic_auth'][:user_pass] = "testPass" + |