-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
45 lines (38 loc) · 1.03 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
variable "resource_group_name" {
description = "Name of resource group"
type = string
}
variable "location" {
description = "Location"
type = string
}
variable "adls_name" {
description = "Name of ADLS Gen1 deployment"
type = string
default = "tamradls"
}
variable "allowed_ips" {
description = "List of IPs allowed through firewall"
type = list(string)
default = []
}
variable "tags" {
type = map(string)
description = "Map of tags to attach to data store"
default = {}
}
variable "adls_firewall_allow_azure_ips" {
type = string
description = "Enable/Disable firewall allow ips. Accepted values are Enabled or Disabled"
default = "Enabled"
}
variable "adls_encryption_state" {
type = string
description = "Enable/Disable ADLS encryption. Accepted values are Enabled or Disabled"
default = "Enabled"
}
variable "adls_encrytion_type" {
type = string
description = "Encryption type for ADLS"
default = "ServiceManaged"
}