You must be logged in to view saved presets
Configuration templates to create a secret using AWS Secrets Manager including options for cross-region replication, random password generation and custom KMS keys for encryption
The following settings are available for configuration:
AWSTemplateFormatVersion: '2010-09-09'
Description: ''
Resources:
Secret:
Type: 'AWS::SecretsManager::Secret'
Properties:
KmsKeyId: alias/aws/secretsmanager
GenerateSecretString:
ExcludeLowercase: false
ExcludeNumbers: false
ExcludePunctuation: false
ExcludeUppercase: false
PasswordLength: 32
Parameters: {}
Metadata: {}
Conditions: {}