Azure Logic App Trigger Recurrence
This page shows how to write Terraform and Azure Resource Manager for Logic App Trigger Recurrence and write them securely.
azurerm_logic_app_trigger_recurrence (Terraform)
The Trigger Recurrence in Logic App can be configured in Terraform with the resource name azurerm_logic_app_trigger_recurrence. The following sections describe 4 examples of how to use the resource and its parameters.
Example Usage from GitHub
resource "azurerm_logic_app_trigger_recurrence" "freq" {
name = var.name
logic_app_id = var.logic_app_id
frequency = var.frequency
interval = var.interval
start_time = try(var.start_time, null)
resource "azurerm_logic_app_trigger_recurrence" "freq" {
name = var.name
logic_app_id = var.logic_app_id
frequency = var.frequency
interval = var.interval
start_time = try(var.start_time, null)
resource "azurerm_logic_app_trigger_recurrence" "this" {
frequency = var.frequency
interval = var.interval
logic_app_id = var.logic_app_id
name = var.name
start_time = var.start_time
resource "azurerm_logic_app_trigger_recurrence" "this" {
frequency = var.frequency
interval = var.interval
logic_app_id = var.logic_app_id
name = var.name
start_time = var.start_time
Parameters
-
frequencyrequired - string -
idoptional computed - string -
intervalrequired - number -
logic_app_idrequired - string -
namerequired - string -
start_timeoptional - string -
time_zoneoptional computed - string -
schedulelist block-
at_these_hoursoptional - set of number -
at_these_minutesoptional - set of number -
on_these_daysoptional - set of string
-
-
timeoutssingle block
Explanation in Terraform Registry
Manages a Recurrence Trigger within a Logic App Workflow
Microsoft.Logic/workflows (Azure Resource Manager)
The workflows in Microsoft.Logic can be configured in Azure Resource Manager with the resource name Microsoft.Logic/workflows. The following sections describe how to use the resource and its parameters.
Example Usage from GitHub
"values" : [ "Microsoft.Logic/workflows" ]
}, {
"not" : false,
"property" : "primary_aggregation_type",
"values" : [ "true" ]
} ],
"values" : [ "Microsoft.Logic/workflows" ]
}, {
"not" : false,
"property" : "primary_aggregation_type",
"values" : [ "true" ]
} ],
"type": "Microsoft.Logic/workflows",
"apiVersion": "2016-06-01",
"name": "name",
"properties": {}
}
},
"type": "Microsoft.Logic/workflows",
"apiVersion": "2017-07-01",
"name": "[concat('Planif-CalculMassif-', parameters('HeliosEnvironnementName'), '-al')]",
"location": "[resourceGroup().location]",
"tags": {
"displayName": "Planif_CalculMassif"
"propertyValue" : "Microsoft.Logic/workflows",
"query" : "resource_type:\"Microsoft.Logic/workflows\"",
"type" : "property",
"value" : "Microsoft.Logic/workflows"
}, {
"NOT" : false,
"propertyValue" : "Microsoft.Logic/workflows",
"query" : "resource_type:\"Microsoft.Logic/workflows\"",
"type" : "property",
"value" : "Microsoft.Logic/workflows"
}, {
"NOT" : false,
"type": "Microsoft.Logic/workflows",
"location": "[parameters('logicAppLocation')]",
"apiVersion": "2016-06-01",
"dependsOn": [
"[resourceId('Microsoft.Web/connections', parameters('outlook_1_Connection_Name'))]",
"[resourceId('Microsoft.Web/connections', parameters('telesignsms_1_Connection_Name'))]"
Parameters
typerequired - stringapiVersionrequired - stringidoptional - stringThe resource id.
nameoptional - stringGets the resource name.
locationoptional - stringThe resource location.
tagsoptional - stringThe resource tags.
propertiesrequiredstateoptional - stringThe state.
integrationAccountoptionalidoptional - stringThe resource id.
parametersoptional - undefinedThe parameters.
Frequently asked questions
What is Azure Logic App Trigger Recurrence?
Azure Logic App Trigger Recurrence is a resource for Logic App of Microsoft Azure. Settings can be wrote in Terraform.
Where can I find the example code for the Azure Logic App Trigger Recurrence?
For Terraform, the anmoltoppo/Terraform, pkhuntia/aztfmod and kevinhead/azurerm source code examples are useful. See the Terraform Example section for further details.
For Azure Resource Manager, the signalfx/content-discovery-experimental, signalfx/content-discovery-staging and Azure/autorest.azureresourceschema source code examples are useful. See the Azure Resource Manager Example section for further details.