-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
57 lines (49 loc) · 1.89 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
variable "log_analytics_workspace_id" {
description = "The Log Analytics Workspace ID."
type = string
}
variable "data_connector_aad_enabled" {
description = "Whether the Azure Active Directory logs are retrieved."
type = bool
default = false
}
variable "data_connector_aad_logs" {
description = "List of Azure Active Directory log category."
type = list(string)
default = ["AuditLogs", "SignInLogs", "NonInteractiveUserSignInLogs", "ServicePrincipalSignInLogs", "ManagedIdentitySignInLogs", "ProvisioningLogs", "ADFSSignInLogs", "RiskyUsers", "UserRiskEvents", "NetworkAccessTrafficLogs", "RiskyServicePrincipals", "ServicePrincipalRiskEvents", "EnrichedOffice365AuditLogs", "MicrosoftGraphActivityLogs"]
}
variable "data_connector_aws_s3_configuration" {
description = "List of Azure Active Directory log category."
type = map(object({
aws_role_arn = string
destination_table = string
sqs_urls = list(string)
}))
default = {}
nullable = false
}
variable "data_connector_mti_enabled" {
description = "Whether the Microsoft Threat Intelligence Data Connector is enabled."
type = bool
default = false
}
variable "data_connector_mti_lookback_days" {
description = "Microsoft Threat Intelligence Data lookback days."
type = number
default = 7
}
variable "ueba_enabled" {
description = "Whether UEBA (User and Entity Behavior Analytics) feature is enabled."
type = bool
default = true
}
variable "ueba_data_sources" {
description = "List of UEBA (User and Entity Behavior Analytics) data sources."
type = list(string)
default = ["AuditLogs", "AzureActivity", "SecurityEvent", "SigninLogs"]
}
variable "ueba_entity_providers" {
description = "List of UEBA (User and Entity Behavior Analytics) entity providers."
type = list(string)
default = ["AzureActiveDirectory"]
}