Azure
Learn how to deploy Flowise on Azure
Flowise as Azure App Service with Postgres: Using Terraform
Prerequisites
Setting Up Your Environment
az login --tenant <Your Subscription ID> --use-device-code az account set --subscription <Your Subscription ID>subscription_name = "subscrpiton_name"
subscription_id = "subscription id"
project_name = "webapp_name"
db_username = "PostgresUserName"
db_password = "strongPostgresPassword"
flowise_secretkey_overwrite = "longandStrongSecretKey"
webapp_ip_rules = [
{
name = "AllowedIP"
ip_address = "X.X.X.X/32"
headers = null
virtual_network_subnet_id = null
subnet_id = null
service_tag = null
priority = 300
action = "Allow"
}
]
postgres_ip_rules = {
"ValbyOfficeIP" = "X.X.X.X"
// Add more key-value pairs as needed
}
source_image = "flowiseai/flowise:latest"
tagged_image = "flow:v1"Configuring Terraform Variables
Deploying with Terraform
Azure Continer Instance: Using Azure Portal UI or Azure CLI
Prerequisites
Create a Container Instance without Persistent Storage
In Portal








Create using Azure CLI
Create a Container Instance with Persistent Storage
Last updated