-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
57 lines (49 loc) · 1.21 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
51
52
53
54
55
56
57
variable "container_name" {
type = string
description = "Name of the storage container"
default = "test-container"
}
variable "resource_group_name" {
type = string
description = "Name of the resource group"
default = "test-resource-group"
}
variable "resource_group_location" {
type = string
description = "Location of the resource group"
default = "eastus"
}
variable "resource_group_tags" {
type = map(string)
description = "Tags for the resource group"
default = {
environment = "dev"
}
}
variable "storage_account_name" {
type = string
description = "Name of the storage account"
default = "stsrgaccount"
}
variable "storage_account_tags" {
type = map(string)
description = "Tags for the storage account"
default = {
environment = "dev"
}
}
variable "ip_rules" {
type = list(string)
description = "List of IP addresses to whitelist"
default = []
}
variable "sas_token_duration" {
type = string
description = "Duration of the SAS token"
default = "26280h" # 3 years
}
variable "enable_immutable_storage" {
type = bool
description = "Enable immutable storage"
default = true
}