-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
65 lines (55 loc) · 1.51 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 "resource_group" {
type = string
description = "The name of the resource group"
}
variable "location" {
type = string
description = "Azure location"
}
variable "tags" {
type = map(string)
description = "A mapping of tags to assign to the resource"
default = {}
}
variable "automation_account_name" {
type = string
description = "Specifies the name of the Automation account resource"
}
variable "sku" {
type = string
description = "The SKU of the account. Possible values are Basic and Free"
default = "Basic"
}
variable "public_network_access_enabled" {
type = bool
description = "Whether public network access is allowed for the automation account"
default = false
}
variable "enable_diagnostic_setting" {
type = bool
description = "Enable diagnostic setting; var.analytics_workspace_id have to be provided"
default = false
}
variable "log_analytics_workspace_id" {
type = string
description = "Log Analytics Workspace ID"
default = null
}
variable "diagnostic_settings_name" {
type = string
description = "Name for Diagnostic Settings that monitors Automation Account"
default = null
}
variable "analytics_destination_type" {
type = string
default = "Dedicated"
description = "Log analytics destination type"
}
variable "automation_modules" {
type = list(object({
name = string
uri = string
}))
default = []
description = "Map of automation modules"
}