0
0
llucycodes42
The resource "mysql_grant" is associated with the MyResource OU, the user is set to example-user and the host is set to example-host. The database is set to example-database and the privileges are set to example-privileges.
Shortcut: tf_mysql_grant
resource "mysql_grant" "${MyResource}" {
user = "example-user"
host = "example-host"
database = "example-database"
privileges = "example-privileges "
}