Drop unused variables

The variables defined in core neutron class are not at all used.

Change-Id: I38dbb37c920a87cdf54e1843a63ff2bb5b801030
This commit is contained in:
Takashi Kajinami
2024-10-26 23:11:37 +09:00
parent a55614ca40
commit 758af27ff5

View File

@@ -1,9 +1,3 @@
class packstack::neutron ()
{
$neutron_db_host = lookup('CONFIG_MARIADB_HOST_URL')
$neutron_db_name = lookup('CONFIG_NEUTRON_L2_DBNAME')
$neutron_db_user = 'neutron'
$neutron_db_password = lookup('CONFIG_NEUTRON_DB_PW')
$neutron_sql_connection = "mysql+pymysql://${neutron_db_user}:${neutron_db_password}@${neutron_db_host}/${neutron_db_name}"
$neutron_user_password = lookup('CONFIG_NEUTRON_KS_PW')
}