-
Notifications
You must be signed in to change notification settings - Fork 6
/
azure-pipelines_site.pp
26 lines (23 loc) · 1.14 KB
/
azure-pipelines_site.pp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Datashield for Azure Pipelines testing.
#
# Install mysql and mongodb, include test data but don't install the firewall.
# This is an example please change to meet the needs of your install. Consider changing any passwords in this file!
#
class { ::datashield:
opal_password => 'datashield_test&',
opal_password_hash => '$shiro1$SHA-256$500000$gcnVxdEmOjaN+NfsK/1NsA==$UOobbhJsBBojnbsfzIBX9GTWjWQFi8aJZxFvFKmOiSE=',
test_data => true, # Install the test data
firewall => false, # Do not install the firewall
mysql => true, # Install mysql server
mongodb => true, # Install mongodb server
remote_mongodb => false, # There is not a remote mongodb server
remote_mysql => false, # There is not a remote mysql server
dsbase_githubusername => 'datashield',
dsbase_ref => 'master',
dsstats_githubusername => 'datashield',
dsstats_ref => 'master',
dsgraphics_githubusername => 'datashield',
dsgraphics_ref => 'master',
dsmodelling_githubusername => 'datashield',
dsmodelling_ref => 'master'
}