dev/provisioning/modules/mysql/examples/mysql_user.pp
author Chloe Laisne <chloe.laisne@gmail.com>
Wed, 29 Jun 2016 09:01:43 +0200
changeset 213 e914f250ca7f
parent 28 b0b56e0f8c7f
permissions -rw-r--r--
Fix item property to model

$mysql_root_pw = 'password'

class { 'mysql::server':
  root_password => 'password',
}

mysql_user{ 'redmine@localhost':
  ensure        => present,
  password_hash => mysql_password('redmine'),
  require       => Class['mysql::server'],
}

mysql_user{ 'dan@localhost':
  ensure        => present,
  password_hash => mysql_password('blah')
}

mysql_user{ 'dan@%':
  ensure        => present,
  password_hash => mysql_password('blah'),
}

mysql_user{ 'socketplugin@%':
  ensure => present,
  plugin => 'unix_socket',
}

mysql_user{ 'socketplugin@%':
  ensure        => present,
  password_hash => mysql_password('blah'),
  plugin        => 'mysql_native_password',
}