generated from snowplow-devops/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
39 lines (33 loc) · 839 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
variable "name" {
description = "Name of the storage account"
type = string
}
variable "resource_group_name" {
description = "Name of resource group to deploy the account into"
type = string
}
variable "sku" {
description = "SKU Tier for storage account"
type = string
default = "Standard"
}
variable "replication_type" {
description = "Replication type for storage account"
type = string
default = "ZRS"
}
variable "kind" {
description = "Storage account Kind"
type = string
default = "StorageV2"
}
variable "is_hns_enabled" {
description = "Required to enable Azure Data Lake Storage Gen 2"
type = bool
default = true
}
variable "tags" {
description = "The tags to append to this resource"
default = {}
type = map(string)
}