aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/common/mongodb-init/resources/config/setup.sql
blob: 452ee187df5c575df194b66135d73bbbb69a56e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Database Setup
use ${MONGO_DATABASE}

// UserCreation Setup
db.createUser(
  {
    user: "${MONGODB_USER}",
    pwd: "${MONGODB_PASSWORD}",
    roles: [ { role: "readWrite", db: "${MONGO_DATABASE}" } ]
  }
)