mobilefish

Untitled

Jul 20th, 2020
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. "DB":{
  2. "Type":"AWS::RDS::DBInstance",
  3. "Properties":{
  4. "DBName":"TestDB",
  5. "Engine":"mysql",
  6. "EngineVersion":"5.7.21",
  7. "DBInstanceClass":"db.t1.micro",
  8. "DBInstanceIdentifier":"testdb",
  9. "MasterUsername":"root",
  10. "MasterUserPassword":"test#west#345",
  11. "AllocatedStorage":"100",
  12. "Iops":"1000",
  13. "BackupRetentionPeriod":"7",
  14. "DBSubnetGroupName":{
  15. "Ref":"DBSubnetGroup"
  16. },
  17. "MultiAZ":false,
  18. "PubliclyAccessible":false,
  19. "AutoMinorVersionUpgrade":false,
  20. "VPCSecurityGroups":[
  21. {
  22. "Ref":"SecurityGroup"
  23. }
  24. ]
  25. }
  26. }
Add Comment
Please, Sign In to add comment