Skip to main content

Azure

Polaris Pro offers an official Terraform module for deploying on Microsoft Azure with enhanced security features. This module provisions confidential computing containers in Azure Container Instances (ACI) with Azure Key Vault integration.

For Polaris Pro deployments, the Key Vault integration should be enabled:

enable_key_vault = true

Accessing the Module

The module is available on the Terraform Registry:

Terraform Registry - Fr0ntierX/polaris/azure

module "polaris_pro" {
source = "Fr0ntierX/polaris/azure"

subscription_id = "your-subscription-id"

name = "polaris-pro"
location = "West Europe"

# Polaris Pro Security Configuration
enable_key_vault = true

# Container Resources
container_memory = 4
container_cpu = 2

# Networking Configuration
networking_type = "Public"
new_vnet_enabled = true
dns_name_label = "polaris-pro-app"

# Polaris Proxy Configuration
polaris_proxy_enable_input_encryption = true
polaris_proxy_enable_output_encryption = true
polaris_proxy_enable_cors = true
polaris_proxy_enable_logging = true

# Workload Configuration
workload_image = "your-registry.azurecr.io/your-workload:latest"
workload_port = 8000
}

Available Features

FeatureDescription
Key Vault IntegrationHSM-backed keys with Azure Key Vault Premium
Secure Key ReleaseHardware attestation and secure key release policies
SKR SidecarAdditional container for secure key operations
Enhanced IdentitySystem-assigned managed identity for secure access

Learn More

For detailed configuration options and usage examples, refer to: