Skip to content

Commit

Permalink
Merge pull request #138 from grycap/devel
Browse files Browse the repository at this point in the history
Change neo4j user pass
  • Loading branch information
micafer authored Apr 16, 2024
2 parents f288efa + 89ec8fc commit 2086a05
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions templates/yProv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,14 @@ topology_template:

inputs:

neo4j_auth:
neo4j_user:
type: string
description: Neo4j credentials
default: neo4j/password
description: Neo4j username
default: neo4j
neo4j_password:
type: string
description: Neo4j password
default: password
neo4j_license:
type: string
description: Neo4j license type
Expand Down Expand Up @@ -70,7 +74,9 @@ topology_template:
- |-
'
values:
db.env.auth.value: { get_input: neo4j_auth }
web.env.user.value: { get_input: neo4j_user }
web.env.password.value: { get_input: neo4j_password }
db.env.auth.value: { concat: [ get_input: neo4j_user, '/', get_input: neo4j_password ] }
db.env.license.value: { get_input: neo4j_license }
storage.neo4j.data.resources.requirements.storage: { get_input: storage_dimension }
storage.neo4j.logs.resources.requirements.storage: { get_input: storage_dimension }
Expand Down

0 comments on commit 2086a05

Please sign in to comment.