-
Notifications
You must be signed in to change notification settings - Fork 0
/
storageVar.tf
36 lines (30 loc) · 1.06 KB
/
storageVar.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
variable "saName" {
type = string
default = "mainstrgccnt"
description = "Storage Account name. Must be unique or will fail."
}
variable "saKind" {
type = string
default = "StorageV2"
description = "Defines the Kind of account. Valid options are Storage, StorageV2 and BlobStorage."
}
variable "saTier" {
type = string
default = "Standard"
description = "Defines the Tier to use for this storage account. Valid options are Standard and Premium."
}
variable "saReplicationType" {
type = string
default = "GRS"
description = "Defines the type of replication to use for this storage account. Valid options are LRS, GRS, RAGRS and ZRS."
}
variable "fsName" {
type = string
default = "sharefolder"
description = "The name of the share. Must be unique within the storage account where the share is located."
}
variable "fsQuota" {
type = string
default = 50
description = "The maximum size of the share, in gigabytes. Must be greater than 0, and less than or equal to 5 TB (5120 GB)."
}