This template deploys OpenLDAP on Ubuntu. It creates a single Ubuntu VM and does a silent install of OpenLDAP on it. After the deployment is successful, you can go to /phpldapadmin to start congfiguring OpenLDAP.
This Azure Resource Manager (ARM) template was created by a member of the community and not by Microsoft. Each ARM template is licensed to you under a licence agreement by its owner, not Microsoft. Microsoft is not responsible for ARM templates provided and licensed by community members and does not screen for security, compatibility or performance. Community ARM templates are not supported under any Microsoft support programme or service, and are made available AS IS without warranty of any kind.
Parameters
Parameter Name | Description |
---|---|
vmAdminUsername | User name for the Virtual Machine administrator. Do not use simple names such as 'admin'. |
vmAdminPassword | Password for the Virtual Machine administrator. |
directoryAdminPassword | Password for the OpenLDAP directory administrator. |
organization | Name of the organization for which the directory is being created. |
namePrefix | Unique name that will be used to generate various other names including the name of the Public IP used to access the Virtual Machine. |
vmSize | The size of the VM. |
location | Location for all resources. |
Use the template
PowerShell
New-AzureRmResourceGroupDeployment -Name <deployment-name> -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/openldap-singlevm-ubuntu/azuredeploy.jsonInstalling and configuring Azure PowerShell
Command line
azure config mode armInstalling and configuring the Azure cross-platform command-line interface
azure group deployment create <my-resource-group> <my-deployment-name> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/openldap-singlevm-ubuntu/azuredeploy.json