-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
43 lines (36 loc) · 1008 Bytes
/
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
variable "project" {
type = string
description = "Project name"
}
variable "env" {
type = string
description = "Environment name"
}
variable "resource_group" {
type = string
description = "The name of the resource group in which the Log Analytics workspace is created"
}
variable "location" {
type = string
description = "Specifies the supported Azure location where the resource exists"
}
variable "custom_workspace_name" {
type = string
description = "Specifies the name of the Log Analytics Workspace"
default = null
}
variable "tags" {
type = map(string)
description = "A mapping of tags to assign to the resource"
default = {}
}
variable "retention_in_days" {
type = number
description = "The workspace data retention in days"
default = 30
}
variable "sku" {
type = string
description = "Log Analytics Workspace sku"
default = "PerGB2018"
}