-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
32 lines (32 loc) · 994 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
###########################
# Common vars
###########################
variable "environment" {
description = "Variable that defines the name of the environment."
type = string
default = "dev"
}
variable "default_tags" {
description = "A mapping of tags to assign to the resource."
type = map(any)
default = {
"ManagedByTerraform" = "True"
}
}
variable "region" {
description = "Region in which resources are deployed."
type = string
default = "weu"
}
###########################
# Resource groups vars
###########################
variable "resource_group_location" {
description = "The Azure Region where the Resource Group should exist. Changing this forces a new Resource Group to be created."
default = "West Europe"
type = string
}
variable "resource_group_name" {
description = "The Name which should be used for this Resource Group. Changing this forces a new Resource Group to be created."
type = string
}