0
0
llucycodes42
The above code creates a MySQL user with the name "example-user", on the host "example-host" with the password "example-password".
Shortcut: tf_mysql_user
resource "mysql_user" "${MyResource}" {
user = "example-user"
host = "example-host"
password = "example-password "
}