Adds stringer

- Doesn't work yet, have create an issue
This commit is contained in:
Nemo 2019-06-23 20:55:44 +05:30
parent 273b75841c
commit 125f4cecaf
2 changed files with 44 additions and 0 deletions

View File

@ -131,3 +131,11 @@ data "pass_password" "web_username" {
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"
}

36
stringer.tf Normal file
View File

@ -0,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=postgres://stringer:${data.pass_password.stringer-db-password.password}@postgres:5432/stringer",
"DATABASE_URL=sqlite3:':memory:'",
"SECRET_TOKEN=${data.pass_password.stringer-secret-token.password}",
"RACK_ENV=development",
]
}