puppet to override bind-address mysql variable

mysql, puppet

Solution

bind_address instead bind-address

Problem

I am using https://github.com/puphpet/puppetlabs-mysql to set up mysql configuration and I need to change bind-address variable to 0.0.0.0. I am trying to do that as ``` mysql::config::override_options { 'mysqld' : 'bind-address' => '0.0.0.0' } ``` but it doesn't work. Can you help me to advise how this should be done? Thank you in advance!

Original source