The essence of this process is to enable the instances to bypass the local database and utilize the dedicated MariaDB instance. That said, to configure your enterprise WordPress, follow the following straightforward steps below:
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */ define('DB_NAME', 'wordpressdb');
/** MySQL database username */ define('DB_USER', 'wordpress');
/** MySQL database password */ define('DB_PASSWORD', '[yoursecretpassword]');
/** MySQL hostname */ define('DB_HOST', '10.46.5.6'); #IP of the MariaDB instance
/** Database Charset to use in creating database tables. */ define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */ define('DB_COLLATE', '');