-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
47 lines (37 loc) · 840 Bytes
/
variables.tf
File metadata and controls
47 lines (37 loc) · 840 Bytes
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
variable "tag_department" {
type = string
default = "test_dept"
}
variable "tag_business_owner" {
type = string
default = "test_manager"
}
variable "tag_region" {
type = string
default = "eastus"
}
variable "location" {
description = "Location of Resource Group"
type = string
default = "eastus"
validation {
condition = contains(["eastus"], lower(var.location))
error_message = "Unsupported Azure Region specified."
}
}
// Azure-Specific App Variables
variable "environment" {
description = "Environment"
type = string
default = "dev"
}
variable "student_name" {
description = "Application Name"
type = string
default = "rchan5"
}
variable "class_name" {
description = "Application Name"
type = string
default = "dsba6190"
}