We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This was my configurations in the serverless.yml file, I'm using serverless framework to deploy:
aurora: username: !Join [ '', [ '{{resolve:secretsmanager:', !Ref AuroraDBUserSecret, ':SecretString:username}}' ] ] password: !Join [ '', [ '{{resolve:secretsmanager:', !Ref AuroraDBUserSecret, ':SecretString:password}}' ] ] identifier: 'aurora-serverless-cluster-${self:provider.stage}' backupRetentionPeriod: 10 # keep backups for 10 days backupWindow: 03:00-04:00 # utc maintenanceWindow: mon:05:00-mon:06:00 # utc minCapacity: 4 maxCapacity: 16 autoPause: true autoPauseSeconds: 60 # 1 minute vpc: name: VPC subnetName: - PrivateSubnet1 - PrivateSubnet2
when I was deploying I faced this error:
TypeError: Cannot read property 'map' of undefined at VPC.getCommonVPCResources
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This was my configurations in the serverless.yml file, I'm using serverless framework to deploy:
when I was deploying I faced this error:
The text was updated successfully, but these errors were encountered: