Skip to content

Instantly share code, notes, and snippets.

@imflamboyant
Created May 4, 2022 08:56
Show Gist options
  • Select an option

  • Save imflamboyant/d12db8cd302d986adb9ca77dc9247adf to your computer and use it in GitHub Desktop.

Select an option

Save imflamboyant/d12db8cd302d986adb9ca77dc9247adf to your computer and use it in GitHub Desktop.
AWSTemplateFormatVersion: '2010-09-09'
Resources:
SongsDatabase:
Type: AWS::RDS::DBInstance
Properties:
AllocatedStorage: 20
DBInstanceClass: db.t3.micro
DBInstanceIdentifier: songs-database
PubliclyAccessible: true
StorageType: gp2
MasterUsername: xxx # change
MasterUserPassword: yyy # change
Engine: mysql
EngineVersion: 8.0.28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment