Skip to content

curityio/azure-arm-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

azure-arm-template

Quality Availability

The repository contains Azure Resource Manager (ARM) templates to deploy Curity in Azure.

Deploy using Azure CLI

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  

Quickstart using Azure Container Instance (ACI)

Sets up a single ACI with one node acting as both admin and runtime. Username for administrator account is admin.

Deploy to Azure

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.

License

These templates are licensed under the Apache v. 2 license.

Questions

For questions, contact Curity AB:

info@curity.io

https://curity.io

Copyright (C) 2020 Curity AB.

About

The repository contains templates to deploy Curity in Azure using ARM templates

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Contributors