1
0
mirror of https://github.com/raseels-repos/golang-saas-starter-kit.git synced 2025-06-27 00:51:13 +02:00

Fix random password for database instance.

This commit is contained in:
Lee Brown
2019-07-15 18:49:28 -08:00
parent 97e0249d38
commit a225f9f24e

View File

@ -831,7 +831,7 @@ func NewServiceDeployRequest(log *log.Logger, flags ServiceDeployFlags) (*servic
DBName: aws.String("shared"),
Engine: aws.String("postgres"),
MasterUsername: aws.String("god"),
MasterUserPassword: uuid.NewRandom().String(),
MasterUserPassword: aws.String(uuid.NewRandom().String()),
Port: aws.Int64(5432),
DBInstanceClass: aws.String("db.t2.small"),
AllocatedStorage: aws.Int64(20),