forked from DareDevelOps/tfbasic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariable.tf
50 lines (44 loc) · 1.3 KB
/
variable.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 "azurerm_location" {
description = "Region where resources will be provisioned"
type = string
default = "eastus"
}
variable "azurerm_resource_group" {
description = "Name of the resource group"
type = string
default = "rg-"
}
variable "azurerm_storage_account_name" {
description = "Name of the storage account."
type = string
default = "eu1basicsa1"
}
variable "azurerm_storage_account_tier" {
description = "Define the account tier standard or premium."
type = string
default = "Standard"
}
variable "azurerm_storage_account_access_tier" {
description = "Defines the access tier for blockblod and v2 storage type valid tiers are Hot or cold"
type = string
default = "Hot"
}
variable "azurerm_storage_account_replication_type" {
description = "Defines the type of replication to use for the storage "
type = string
default = "LRS"
}
variable "azurerm_storage_account_min_tls_version" {
description = "Minimum TLS version do not change"
type = string
default = "TLS1_2"
}
variable "azurerm_storage_account_container_prefix" {
description = "Azure storage account container name prefix"
type = string
default = "tfstate"
}
variable "azurerm_storage_account_container_name" {
description = "Azure storage account container name"
type = string
}