-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
65 lines (54 loc) · 1.25 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
variable "project" {
type = string
description = "Project name"
}
variable "env" {
type = string
description = "Environment"
}
variable "location" {
type = string
description = "Location"
}
variable "tags" {
type = map(string)
description = "Tags"
}
variable "resource_group" {
type = string
description = "Resource group name"
}
variable "name" {
type = string
description = "Logic app name"
}
variable "workflow_parameters" {
type = any
description = "Workflow parameters"
default = {}
}
variable "parameters" {
type = any
description = "Parameters"
default = {}
}
variable "identity_ids" {
type = list(string)
description = "List of user assigned identity IDs"
default = null
}
variable "analytics_workspace_id" {
type = string
description = "Resource ID of Log Analytics Workspace"
default = null
}
variable "analytics_destination_type" {
type = string
description = "Possible values are AzureDiagnostics and Dedicated."
default = "Dedicated"
}
variable "enable_diagnostic_setting" {
type = bool
description = "Enable diagnostic setting. var.analytics_workspace_id must be provided"
default = false
}