Guided Walkthroughs
Step-by-step configuration wizards for your environment
Dedicated Security Account
AWS Backup Strategy
VPC Connectivity Setup
Automated Patching
All Guides
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: {}