aws secretsmanager get-random-password
Generates a random password of the specified complexity. This operation is intended for use in the Lambda rotation function. Per best practice, we recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. Minimum permissions To run this command, you must have the following permissions: secretsmanager:GetRandomPassword
Options
Name | Description |
---|---|
--password-length <long> | The desired length of the generated password. The default value if you do not include this parameter is 32 characters |
--exclude-characters <string> | A string that includes characters that should not be included in the generated password. The default is that all characters from the included sets can be used |
--exclude-numbers | Specifies that the generated password should not include digits. The default if you do not include this switch parameter is that digits can be included |
--no-exclude-numbers | Specifies that the generated password should not include digits. The default if you do not include this switch parameter is that digits can be included |
--exclude-punctuation | Specifies that the generated password should not include punctuation characters. The default if you do not include this switch parameter is that punctuation characters can be included. The following are the punctuation characters that can be included in the generated password if you don't explicitly exclude them with ExcludeCharacters or ExcludePunctuation: ! " # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~ |
--no-exclude-punctuation | Specifies that the generated password should not include punctuation characters. The default if you do not include this switch parameter is that punctuation characters can be included. The following are the punctuation characters that can be included in the generated password if you don't explicitly exclude them with ExcludeCharacters or ExcludePunctuation: ! " # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~ |
--exclude-uppercase | Specifies that the generated password should not include uppercase letters. The default if you do not include this switch parameter is that uppercase letters can be included |
--no-exclude-uppercase | Specifies that the generated password should not include uppercase letters. The default if you do not include this switch parameter is that uppercase letters can be included |
--exclude-lowercase | Specifies that the generated password should not include lowercase letters. The default if you do not include this switch parameter is that lowercase letters can be included |
--no-exclude-lowercase | Specifies that the generated password should not include lowercase letters. The default if you do not include this switch parameter is that lowercase letters can be included |
--include-space | Specifies that the generated password can include the space character. The default if you do not include this switch parameter is that the space character is not included |
--no-include-space | Specifies that the generated password can include the space character. The default if you do not include this switch parameter is that the space character is not included |
--require-each-included-type | A boolean value that specifies whether the generated password must include at least one of every allowed character type. The default value is True and the operation requires at least one of every character type |
--no-require-each-included-type | A boolean value that specifies whether the generated password must include at least one of every allowed character type. The default value is True and the operation requires at least one of every character type |
--cli-input-json <string> | Performs service operation based on the JSON string provided. The JSON string follows the format provided by ``--generate-cli-skeleton``. If other arguments are provided on the command line, the CLI values will override the JSON-provided values. It is not possible to pass arbitrary binary values using a JSON-provided value as the string will be taken literally |
--generate-cli-skeleton <string> | Prints a JSON skeleton to standard output without sending an API request. If provided with no value or the value ``input``, prints a sample input JSON that can be used as an argument for ``--cli-input-json``. If provided with the value ``output``, it validates the command inputs and returns a sample output JSON for that command |