1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-08 10:35:03 +00:00
gcloud-help/gcloud/sql/users/set-password-policy
2022-03-01 04:29:52 +00:00

83 lines
3.1 KiB
Text

NAME
gcloud sql users set-password-policy - replaces a user's password policy in
a given instance
SYNOPSIS
gcloud sql users set-password-policy USERNAME --instance=INSTANCE, -i
INSTANCE [--async] [--clear-password-policy] [--host=HOST]
[--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]
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Replaces a user's password policy in a given instance with a specified
username and host.
EXAMPLES
To replace the password policy with 2 minutes password expiration time for
my-user in instance prod-instance, run:
$ gcloud sql users set-password-policy my-user \
--instance=prod-instance \
--password-policy-password-expiration-duration=2m
To clear the existing password policy of my-user in instance prod-instance,
run:
$ gcloud sql users set-password-policy my-user \
--instance=prod-instance --clear-password-policy
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.
--clear-password-policy
Clear the existing password policy.
--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-policy-allowed-failed-attempts=PASSWORD_POLICY_ALLOWED_FAILED_ATTEMPTS
Number of failed login attempts allowed before a user is locked out.
--[no-]password-policy-enable-failed-attempts-check
Enables the failed login attempts check if set to true. 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.
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 set-password-policy
$ gcloud beta sql users set-password-policy