1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-08 18:45:13 +00:00
gcloud-help/gcloud/sql/users/create
2022-06-08 09:13:38 +00:00

75 lines
2.9 KiB
Text

NAME
gcloud sql users create - creates a user in a given instance
SYNOPSIS
gcloud sql users create USERNAME --instance=INSTANCE, -i INSTANCE [--async]
[--host=HOST] [--password=PASSWORD]
[--password-policy-allowed-failed-attempts=PASSWORD_POLICY_ALLOWED_FAILED_ATTEMPTS]
[--[no-]password-policy-enable-failed-attempts-check]
[--password-policy-password-expiration-duration=PASSWORD_POLICY_PASSWORD_EXPIRATION_DURATION]
[--type=TYPE] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Creates a user in a given instance with specified username, host, type, and
password.
POSITIONAL ARGUMENTS
USERNAME
Cloud SQL username.
REQUIRED FLAGS
--instance=INSTANCE, -i INSTANCE
Cloud SQL instance ID.
OPTIONAL FLAGS
--async
Return immediately, without waiting for the operation in progress to
complete.
--host=HOST
Cloud SQL user's host name expressed as a specific IP address or
address range. % denotes an unrestricted host name. Applicable flag for
MySQL instances; ignored for all other engines. Note, if you connect to
your instance using IP addresses, you must add your client IP address
as an Authorized Address, even if your host name is unrestricted. For
help on how to do so, read:
https://cloud.google.com/sql/docs/mysql/configure-ip
--password=PASSWORD
Cloud SQL user's password.
--password-policy-allowed-failed-attempts=PASSWORD_POLICY_ALLOWED_FAILED_ATTEMPTS
Number of failed login attempts allowed before a user is locked out.
This flag is currently not available.
--[no-]password-policy-enable-failed-attempts-check
Enables the failed login attempts check if set to true. This flag is
currently not available. Use
--password-policy-enable-failed-attempts-check to enable and
--no-password-policy-enable-failed-attempts-check to disable.
--password-policy-password-expiration-duration=PASSWORD_POLICY_PASSWORD_EXPIRATION_DURATION
Expiration duration after a password is updated, for example, 2m for 2
minutes. See gcloud topic datetimes for information on duration
formats. This flag is currently not available.
--type=TYPE
Cloud SQL user's type. It determines the method to authenticate the
user during login. See the list of user types at
https://cloud.google.com/sql/docs/postgres/admin-api/rest/v1beta4/SqlUserType
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,
--help, --impersonate-service-account, --log-http, --project, --quiet,
--trace-token, --user-output-enabled, --verbosity.
Run $ gcloud help for details.
NOTES
These variants are also available:
$ gcloud alpha sql users create
$ gcloud beta sql users create