The repository contains Azure Resource Manager (ARM) templates to deploy Curity in Azure.
To deploy a template using Azure CLI you have to be authenticated and have a resource group available.
az login
If you need a new resource group
az group create \
--name myResourceGroup \
--location "Central US"
If you have cloned this repository you can then deploy templates from the template directory
az deployment group create \
--name curityDeployment \
--resource-group myResourceGroup \
--template-file template/curity-arm-aci.json
The template contains parameters. If you haven't set the mandatory ones you will be asked to fill these in before you can deploy the template.
If you want to set e.g. the password parameter you would to it like this:
az deployment group create \
--name curityDeployment \
--resource-group myResourceGroup \
--template-file template/curity-arm-aci.json was \
--parameters password=mySecretPassw0rd
Sets up a single ACI with one node acting as both admin and runtime. Username for administrator account is admin.
After the deployment is finshed you can see the deployment Outputs for URLs to the Admin UI and to the runtime node.
For instructions how to set up the system, have a look at the First configuration guide.
These templates are licensed under the Apache v. 2 license.
For questions, contact Curity AB:
Copyright (C) 2020 Curity AB.