-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathvariables.tf
56 lines (47 loc) · 1.39 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
variable "resource_group_name" {
type = string
description = "Name of the Azure Resource Group"
}
variable "location" {
type = string
description = "Azure Region where services should be created"
}
variable "tags" {
type = map
default = {}
description = "A map of Azure tags, assoicated with all created resources"
}
variable "create_lock" {
type = bool
default = true
description = "Should an Azure Management Lock being created?"
}
variable "storage_account_name" {
type = string
description = "Name of the Azure Storage Account"
}
variable "storage_container_name" {
type = string
default = "terraform-state"
description = "Name of the Blob container (defaults to terraform-state)"
}
variable "storage_account_tier" {
type = string
default = "Standard"
description = "Azure Storage Account Tier (defaults to Standard)"
}
variable "storage_account_replication_type" {
type = string
default = "LRS"
description = "Azure Storage Account Replication Type (defaults to LRS)"
}
variable "storage_account_access_tier" {
type = string
default = "Hot"
description = "Azure STorage Account Access Tier (defaults to Hot)"
}
variable "storage_container_access_type" {
type = string
default = "private"
description = "Blob Container Access Type (defaults to private)"
}