Skip to content

Commit e8b07c7

Browse files
DEV-74217: Modified : Adding client id for the user input
1 parent 2bf2e7f commit e8b07c7

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

deploy.tf

+6-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ variable "azure_region" {
3333
description = "Azure region"
3434
}
3535

36+
variable "azure_client_id" {
37+
type = string
38+
description = "Azure Application Client ID"
39+
}
40+
3641
variable "tags" {
3742
description = "Tags given to the resources created by this template"
3843
type = map(string)
@@ -161,7 +166,7 @@ resource "azurerm_function_app" "lm_logs" {
161166
LogicMonitorCompanyName = var.lm_company_name
162167
LogicMonitorAccessId = var.lm_access_id
163168
LogicMonitorAccessKey = var.lm_access_key
164-
169+
AzureClientID = var.azure_client_id
165170
/* Uncomment to set custom connection timeout */
166171
# LogApiClientConnectTimeout = 10000
167172

0 commit comments

Comments
 (0)