-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
78 lines (66 loc) · 1.65 KB
/
variables.tf
File metadata and controls
78 lines (66 loc) · 1.65 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
variable "automation_account_permissions" {
type = list(string)
description = "Graph permissions for the automation account"
default = ["Application.ReadWrite.All", "Mail.Send"]
}
variable "automation_operators" {
type = map(object({
type = string
client_id = optional(string, null)
object_id = optional(string, null)
}))
description = "map with operators for the runbook and automation account"
default = {}
}
variable "environment" {
type = string
description = "environment"
}
variable "keyvaults" {
type = list(object({
name = string
id = string
}))
description = "list of keyvaults to add to the eventgrid subscription"
default = []
}
variable "keyvault_rbac_roles" {
type = list(string)
description = "default required rbac roles to assign to the automation account"
default = ["Owner", "Key Vault Secrets Officer"]
}
variable "location" {
type = string
description = "location code"
}
variable "location_code" {
type = string
description = "location code"
}
variable "name_suffix" {
type = string
description = "name suffix"
default = "asr-rb"
}
variable "resource_group_id" {
type = string
description = "resource group id"
}
variable "resource_group_name" {
type = string
description = "resource group name"
}
variable "tags" {
type = map(string)
description = "tags"
default = {}
}
variable "webhook_expiration_end_year" {
type = number
description = "webhook expiration in years"
default = 2027
}
variable "workload" {
type = string
description = "workload"
}