We recommend to deploy the panagenda OfficeExpert appliance on Azure. However, if you prefer an on-premises installation, please refer to the knowledge base article: OfficeExpert - On-Premises Deployment.
Note that a license file is required to run OfficeExpert. Please contact sales@panagenda.com to request a license.
Place the license file OfficeExpert.lic in a folder on your local hard drive. This file will be uploaded to the virtual appliance in a later step using the panagenda OfficeExpert web interface.
Please ensure that the Firewall and/or Network Security Groups are set up accordingly, see Network and Firewall - Requirements.
Azure Deployment
The following GitHub repository contains everything needed to deploy panagenda OfficeExpert in your own Azure tenant: https://github.com/panagenda/oe-on-az
Please follow the steps below:
For GCC deployments: if you want to deploy OfficeExpert to a GCC enabled Azure tenant, please contact support@panagenda.com
The steps below require an account which has enough privileges to deploy Azure Resources (Keyvaults, Storage Containers, etc...) and to register an Azure AD Application which acts as the service principal, Terraform (Script) runs with.
- Access shell.azure.com and log in as an Azure tenant administrator. Alternatively, you can also use Azure CLI).
- Clone this repository by executing:
git clone https://github.com/panagenda/oe-on-az.git; cd oe-on-az - Export your azure tenant id by executing:
export tenantId="{Azure Tenant ID}" - Define your azure subscription ID where the Azure resources should be assigned to by executing:
export subscriptionId="{Azure Subscription ID}" - Define the template URL we provided you with:
export template="https://oestoresxxxx/xxxx.vhd" Customize the prep.sh file and adjust the location placeholder (default=westeurope, etc.) according to your requirements:
You can either use the Azure Cloud Shell editor or
vi prep.shBy default a service principal with the Contributor role for the defined subscription is created in your Azure AD. If you don't want OE to create this SP, you can define an existing service principal and the corresponding secret in the following two lines inside of this prep.sh file
export spId="" export spSecret=""
Execute:
./prep.sh
to prepare everything for TerraformCustomize the vars.tf based on your needs (details can be found here: Customize the Azure Deployment)
You can either use the Azure Cloud Shell editor or
vi vars.tfIn the Network section, you can specify if the VM should get a public IP (from Azure) or an internal IP Address coming from one of your existing VNETs.
Execute the following to deploy OfficeExpert:
./up.sh- The
up.sh
will print the IP address of the deployed appliance. Please create a DNS entry for this IP address. - The final steps depend on your configuration:
Option 1: For a public IP (default):
- Execute script: (for further details, please refer to Azure Deployment Details)
./config.sh "{FQDN of OE}" "{TimeZone}" "{Bot certificate secret}" "{new root password}"
Example:./config.sh "my-oe.my-domain.com" "Europe/Berlin" "my-oe-secret" "my-root-password"
- The
config.sh
script will configure the appliance and also create the Azure Bot application for you
The Azure resources are now successfully deployed.
With a public IP, you can skip the steps described under Starting the Virtual Appliance! Please continue with the Chapter OfficeExpert Web Interface.
Option 2: For a custom virtual network (if you configured a custom network in the vars.tf
file):
For a custom virtual network deployment, please continue here Starting the Virtual Appliance (adjusting host name, time zone settings and network settings).
The steps below are ALL optional.
- Execute
./create-bot.sh "{resource group}" "{azure location}" "{FQDN of OE}"
--> for further details, please refer to Azure Deployment Details
Example:./create-bot.sh "pana-oe-rg" "westeurope" "my-oe.my-domain.com"
- The Azure resources are now successfully deployed.
Executing the steps from above will deploy the following Azure resources:
Example (public IP)
Configure ACE Bot in Azure Portal - Optional
- To configure the ACE Bot, click on the bot item:
- Select Settings and write down the Microsoft App ID of the ACE Bot for OfficeExpert — the App ID will be required later to configure the ACE Bot in the Teams Integration Settings.
- Open the Bot app via Azure Active Directory and App registrations to provide the required client secret, select Certificates & secrets and click on New client secret:
- Provide an appropriate description, e.g. "OfficeExpert Azure Bot Client Secret", and set the period of validity (recommended: "Never" — otherwise you will have to create a reminder so you can renew the secret before it expires).
Click on Add. Back in the Certificates & secrets view, the value will be displayed.
Write down this value, since it will be required later to configure the ACE Bot in the Teams Integration Settings.Note that the value is only visible right after creation. Therefore, we recommend to write it down immediately.