Password should be secured
Change-Id: Iee879506b769294639b80a1ba64e93ae3a37ae0a Closes-Bug: #1676708
This commit is contained in:
parent
69e1fc4705
commit
8529eaa97d
@ -98,7 +98,7 @@
|
||||
# netapp_storage_family => 'ontap_cluster',
|
||||
# netapp_transport_type => 'https',
|
||||
# }
|
||||
|
||||
#
|
||||
define manila::backend::netapp (
|
||||
$driver_handles_share_servers,
|
||||
$netapp_login,
|
||||
|
@ -56,7 +56,7 @@ manila_config {
|
||||
'DEFAULT/nova_ca_certificates_file': value => $nova_ca_certificates_file;
|
||||
'DEFAULT/nova_api_insecure': value => $nova_api_insecure;
|
||||
'DEFAULT/nova_admin_username': value => $nova_admin_username;
|
||||
'DEFAULT/nova_admin_password': value => $nova_admin_password;
|
||||
'DEFAULT/nova_admin_password': value => $nova_admin_password, secret => true;
|
||||
'DEFAULT/nova_admin_tenant_name': value => $nova_admin_tenant_name;
|
||||
'DEFAULT/nova_admin_auth_url': value => $nova_admin_auth_url;
|
||||
}
|
||||
|
@ -36,7 +36,6 @@
|
||||
# (optional) Location of ca certificates file to use for
|
||||
# neutron client requests.
|
||||
#
|
||||
|
||||
class manila::network::neutron (
|
||||
$neutron_url = 'http://127.0.0.1:9696',
|
||||
$neutron_url_timeout = 30,
|
||||
@ -57,7 +56,7 @@ class manila::network::neutron (
|
||||
'DEFAULT/neutron_url': value => $neutron_url;
|
||||
'DEFAULT/neutron_url_timeout': value => $neutron_url_timeout;
|
||||
'DEFAULT/neutron_admin_username': value => $neutron_admin_username;
|
||||
'DEFAULT/neutron_admin_password': value => $neutron_admin_password;
|
||||
'DEFAULT/neutron_admin_password': value => $neutron_admin_password, secret => true;
|
||||
'DEFAULT/neutron_admin_tenant_name': value => $neutron_admin_tenant_name;
|
||||
'DEFAULT/neutron_region_name': value => $neutron_region_name;
|
||||
'DEFAULT/neutron_admin_auth_url': value => $neutron_admin_auth_url;
|
||||
|
@ -44,7 +44,6 @@
|
||||
# hitachi_hnas_file_system_name => 'FS-Manila',
|
||||
# }
|
||||
#
|
||||
|
||||
class manila::share::hitachi_hnas (
|
||||
$hitachi_hnas_username,
|
||||
$hitachi_hnas_password,
|
||||
|
@ -89,7 +89,6 @@
|
||||
# netapp_transport_type => 'https',
|
||||
# }
|
||||
#
|
||||
|
||||
class manila::share::netapp (
|
||||
$driver_handles_share_servers,
|
||||
$netapp_login,
|
||||
|
@ -63,7 +63,7 @@ manila_config {
|
||||
'DEFAULT/cinder_api_insecure': value => $cinder_api_insecure;
|
||||
'DEFAULT/cinder_cross_az_attach': value => $cinder_cross_az_attach;
|
||||
'DEFAULT/cinder_admin_username': value => $cinder_admin_username;
|
||||
'DEFAULT/cinder_admin_password': value => $cinder_admin_password;
|
||||
'DEFAULT/cinder_admin_password': value => $cinder_admin_password, secret => true;
|
||||
'DEFAULT/cinder_admin_tenant_name': value => $cinder_admin_tenant_name;
|
||||
'DEFAULT/cinder_admin_auth_url': value => $cinder_admin_auth_url;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user