Using the Chef Opscode MySql cookbook. It grants the MySQL "repl" user access using a wildcard host value.
GRANT REPLICATION SLAVE ON *.* TO 'repl'@'%' identified by *password*
Is this secure? Or is it better to update the mysql.user table with a different host?