-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
33 lines (28 loc) · 903 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
# Input variable: Name of Storage Account
variable "resource_group_name" {
description = "Name of the resource group"
type = string
}
variable "location" {
description = "Azure region where resources will be created"
type = string
}
variable "tags" {
description = "Tags to apply to the resources"
type = map(string)
default = {}
}
variable "enable_versioning" {
description = "Enable blob versioning"
type = bool
default = false
}
variable "storage_account_name" {
description = "The name of the storage account. Must be globally unique, length between 3 and 24 characters and contain numbers and lowercase letters only."
default = "mytfstorageaccount"
}
# Input variable: Name of Storage container
variable "container_name" {
description = "The name of the Blob Storage container."
default = "my-terraform-state-container"
}