Merge pull request #4669 from lwander/f-gcp-sql-user

provider/google: SQL user resource, documentation & tests
This commit is contained in:
James Nugent 2016-01-14 06:51:17 +00:00
commit a93e17e3bf

47
r/sql_user.html.markdown Normal file
View File

@ -0,0 +1,47 @@
---
layout: "google"
page_title: "Google: google_sql_user"
sidebar_current: "docs-google-sql-user"
description: |-
Creates a new SQL user in Google Cloud SQL.
---
# google\_sql\_user
Creates a new Google SQL User on a Google SQL User Instance. For more information, see the [official documentation](https://cloud.google.com/sql/), or the [JSON API](https://cloud.google.com/sql/docs/admin-api/v1beta4/users).
## Example Usage
Example creating a SQL User.
```
resource "google_sql_database_instance" "master" {
name = "master-instance"
settings {
tier = "D0"
}
}
resource "google_sql_user" "users" {
name = "me"
instance = "${google_sql_database_instance.master.name}"
host = "me.com"
}
```
## Argument Reference
The following arguments are supported:
* `name` - (Required) The name of the user.
Changing this forces a new resource to be created.
* `host` - (Required) The host the user can connect from. Can be an IP address.
Changing this forces a new resource to be created.
* `password` - (Required) The users password. Can be updated.
* `instance` - (Required) The name of the Cloud SQL instance.
Changing this forces a new resource to be created.