gitextract_zdgud6lr/ ├── .gitignore ├── .jshintrc ├── .travis.yml ├── CONTRIBUTE.md ├── Gruntfile.js ├── LICENSE ├── LICENSE-DOCS ├── README.md ├── SECURITY.md ├── azuredeploy-large-ha.json ├── azuredeploy-maximal.json ├── azuredeploy-minimal.json ├── azuredeploy-small2mid-noha.json ├── azuredeploy.json ├── azuredeploy.parameters.json ├── docs/ │ ├── Cleanup.md │ ├── Deploy.md │ ├── Environment-Variables.md │ ├── Get-Install-Data.md │ ├── Manage.md │ ├── Parameters.md │ ├── Preparation.md │ ├── SslCert.md │ ├── Test.md │ └── env.json ├── env.json ├── etc/ │ ├── changeBranchInURL.sh │ ├── checkBaseUrls.sh │ ├── keyvault.sh │ ├── travis/ │ │ ├── Configuration.py │ │ ├── DeploymentTester.py │ │ └── __init__.py │ ├── travis.py │ └── updateDocsParametersMd.sh ├── images/ │ └── Moodle-Architecture-PremiumFiles.vsdx ├── loadtest/ │ ├── Azure_Login.md │ ├── Deploy_Load_Test_VM.md │ ├── README.md │ ├── azuredeploy.parameters.loadtest.defaults.json │ ├── loadtest.sh │ ├── moodle-on-azure-test-course-1.mbz │ ├── simple-test-1.jmx │ ├── simple-test-2.jmx │ ├── time-gated-exam-test-dist-slaves.jmx │ └── time-gated-exam-test.jmx ├── managedApplication/ │ ├── Cleanup.md │ ├── DeployMoodleManagedApp.md │ ├── Environment.md │ ├── PublishMoodleManagedApplication.md │ ├── README.md │ ├── createServiceCatlogUpdate.sh │ ├── createUIDefinition.json │ └── parameters-template.json ├── metadata.json ├── migration/ │ ├── azure-fileshare-sa-deploy.json │ └── azuredeploy-migration.json ├── nested/ │ ├── appgw.json │ ├── controller.json │ ├── controllersetup.json │ ├── db-mssql.json │ ├── db-mysql.json │ ├── db-mysqlflex.json │ ├── db-postgres.json │ ├── gluster.json │ ├── glustervm.json │ ├── glustervmsetup.json │ ├── network-subnets.json │ ├── network-vnet-ddos.json │ ├── network-vnet-privateDnsZone.json │ ├── network-vnet.json │ ├── network.json │ ├── nfs-ha-vm.json │ ├── nfs-ha.json │ ├── recoveryservices.json │ ├── recoveryservicesEnlist.json │ ├── redis.json │ ├── search-azure.json │ ├── search-elastic-config.json │ ├── search-elastic.json │ ├── storageAccount.json │ ├── tika.json │ ├── tikaconfig.json │ ├── vmsetupparams.json │ └── webvmss.json ├── package.json └── scripts/ ├── helper_functions.sh ├── install_elastic.sh ├── install_gluster.sh ├── install_moodle.sh ├── install_tika.sh ├── setup_nfs_ha.sh └── setup_webserver.sh