We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bf2e7f commit e8b07c7Copy full SHA for e8b07c7
deploy.tf
@@ -33,6 +33,11 @@ variable "azure_region" {
33
description = "Azure region"
34
}
35
36
+variable "azure_client_id" {
37
+ type = string
38
+ description = "Azure Application Client ID"
39
+}
40
+
41
variable "tags" {
42
description = "Tags given to the resources created by this template"
43
type = map(string)
@@ -161,7 +166,7 @@ resource "azurerm_function_app" "lm_logs" {
161
166
LogicMonitorCompanyName = var.lm_company_name
162
167
LogicMonitorAccessId = var.lm_access_id
163
168
LogicMonitorAccessKey = var.lm_access_key
164
-
169
+ AzureClientID = var.azure_client_id
165
170
/* Uncomment to set custom connection timeout */
171
# LogApiClientConnectTimeout = 10000
172
0 commit comments