FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

mysql_user

The mysql_user resource creates and manages a user on a MySQL server.

Example Usage

resource "mysql_user" "jdoe" {
    user = "jdoe"
    host = "example.com"
    password = "password"
}

Argument Reference

The following arguments are supported:

Attributes Reference

No further attributes are exported.


See the source of this document at Terraform.io