forked from datashield/dsBaseClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines_site.pp
22 lines (19 loc) · 983 Bytes
/
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
# 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',
dsdanger_githubusername => 'datashield',
dsdanger_ref => ''
}