examples/jamstack: implemented database integration with RDS

Signed-off-by: Sam Alba <sam.alba@gmail.com>
This commit is contained in:
Sam Alba
2021-04-12 16:19:15 -07:00
parent 0b3395b9e8
commit e972863be6
5 changed files with 91 additions and 22 deletions

View File

@@ -2,3 +2,21 @@ package main
// Name of the application
name: string & =~"[a-z0-9-]+"
// FIXME: temporary workaround (GH issue #142) - image metadata is lost after build
backend: container: command: ["/bin/hello-go"]
// Inject db info in the container environment
backend: environment: {
DB_USERNAME: database.username
DB_HOSTNAME: database.hostname
DB_PASSWORD: database.password
DB_DBNAME: database.dbName
DB_PORT: "\(database.port)"
DB_TYPE: database.dbType
}
url: {
frontendURL: "FIXME"
backendURL: "https://\(backend.hostname)/"
}