-
Notifications
You must be signed in to change notification settings - Fork 11
/
app-variables.tf
41 lines (35 loc) · 1008 Bytes
/
app-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
#############################
## Application - Variables ##
#############################
# app name
variable "app_name" {
type = string
description = "This variable defines the application name used to build resources"
}
# company name
variable "company" {
type = string
description = "This variable defines the company name used to build resources"
}
# company prefix
variable "prefix" {
type = string
description = "This variable defines the company name prefix used to build resources"
}
# azure region
variable "location" {
type = string
description = "Azure region where the resource group will be created"
default = "UK South"
}
# azure region
variable "region" {
type = string
description = "Azure region code where the resource group will be created"
default = "uks"
}
# application or company environment
variable "environment" {
type = string
description = "This variable defines the environment to be built"
}