-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
50 lines (42 loc) · 1.12 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
variable "resource_group_name" {
description = "The name of the resource group"
type = string
default = "default-rg"
}
variable "location" {
description = "The location of the resource group"
type = string
default = "East US"
}
variable "storage_account_name" {
description = "The name of the storage account"
type = string
default = "defaultstorageacc"
}
variable "account_tier" {
description = "The tier of the storage account"
type = string
default = "Standard"
}
variable "account_replication_type" {
description = "The replication type of the storage account"
type = string
default = "LRS"
}
variable "tags" {
description = "Tags to apply to the storage account"
type = map(string)
default = {
environment = "dev"
}
}
variable "delete_retention_policy_in_days" {
description = "The number of days that the blob should be retained for"
type = number
default = "90"
}
variable "identity_type" {
description = "The identity type of the storage account"
type = string
default = "SystemAssigned"
}