Adds stringer
- Doesn't work yet, have create an issue
Diff
secrets.tf | 8 ++++++++
stringer.tf | 36 ++++++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+)
@@ -131,3 +131,11 @@
data "pass_password" "web_password" {
path = "web_password"
}
data "pass_password" "stringer-db-password" {
path = "stringer-db-password"
}
data "pass_password" "stringer-secret-token" {
path = "stringer-secret-token"
}
@@ -1,0 +1,36 @@
module "stringer-db" {
source = "modules/postgres"
name = "stringer"
password = "${data.pass_password.stringer-db-password.password}"
}
module "stringer-container" {
name = "stringer"
source = "modules/container"
image = "mdswanson/stringer"
resource {
memory = 256
memory_swap = 256
}
web {
expose = true
port = 8080
host = "stringer.bb8.fun"
}
networks = "${list(
data.docker_network.bridge.id,
module.docker.traefik-network-id,
module.db.postgres-network-id
)}"
env = [
"DATABASE_URL=sqlite3:':memory:'",
"SECRET_TOKEN=${data.pass_password.stringer-secret-token.password}",
"RACK_ENV=development",
]
}