LinuxCommandLibrary

az-logicapp

Manage Azure Logic Apps

TLDR

Create a Logic App

$ az logicapp create --name [MyLogicApp] --resource-group [MyResourceGroup] --storage-account [MyStorageAccount]
copy
List all Logic Apps in a resource group
$ az logicapp list --resource-group [MyResourceGroup]
copy
Show details of a Logic App
$ az logicapp show --name [MyLogicApp] --resource-group [MyResourceGroup]
copy
Start a Logic App
$ az logicapp start --name [MyLogicApp] --resource-group [MyResourceGroup]
copy
Stop a Logic App
$ az logicapp stop --name [MyLogicApp] --resource-group [MyResourceGroup]
copy
Delete a Logic App
$ az logicapp delete --name [MyLogicApp] --resource-group [MyResourceGroup] --yes
copy

SYNOPSIS

az logicapp subcommand [options]

DESCRIPTION

az logicapp manages Azure Logic Apps (Standard), which are serverless workflows that integrate apps, data, services, and systems. Logic Apps provide visual designers and prebuilt connectors for enterprise integration scenarios.
This command group manages Standard tier Logic Apps. For Consumption tier Logic Apps, use the Azure portal or ARM templates.

SUBCOMMANDS

create

Create a Logic App.
delete
Delete a Logic App.
list
List Logic Apps.
show
Get details of a Logic App.
start
Start a Logic App.
stop
Stop a Logic App.
restart
Restart a Logic App.
deployment
Manage Logic App deployments.
config
Configure Logic App settings.

CAVEATS

Requires Azure CLI to be installed and authenticated. Standard tier Logic Apps require a storage account. Some features require specific Azure regions.

SEE ALSO

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community