generated from opsd-io/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
35 lines (30 loc) · 866 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
34
35
variable "azurerm_resource_group_name" {
description = "Azure Resource Group name in which project will be deployed."
default = "testproject"
type = string
}
variable "azurerm_resource_group_location" {
description = "Region in which Azure Resource Group will be created."
default = "North Europe"
type = string
}
variable "azurerm_storage_account_account_kind" {
description = "..."
default = "StorageV2"
type = string
}
variable "azurerm_storage_account_account_tier" {
description = "..."
default = "Standard"
type = string
}
variable "azurerm_storage_account_account_replication_type" {
description = "..."
default = "GRS"
type = string
}
variable "azurerm_storage_account_public_network_access_enabled" {
description = "..."
default = true
type = bool
}