-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
79 lines (62 loc) · 1.42 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
########### MODULE VARIABLES
variable "MD_VMNAME" {
description = "Virtual Machine Name where to attach disk"
type = string
default = ""
}
variable "MD_LOCATION" {
description = "Region where deploy disk"
type = string
default = ""
}
variable "MD_RGNAME" {
description = "Resource Group where deploy disk"
type = string
default = ""
}
variable "MD_SA_TYPE" {
description = "Storage Account Type"
type = string
default = ""
}
variable "MD_SA_SIZE" {
description = "Storage Account Size"
type = string
default = ""
}
variable "MD_VM_ID" {
description = "Virtual Machine ID where to attach disk"
type = string
default = ""
}
variable "MD_DISK_NUMBER" {
description = "Disk sequential number"
type = string
default = ""
}
variable "MD_ZONE" {
description = "Disk sequential number"
type = string
default = ""
}
###########NAMING CONVENTION PREFIX
variable "MD_DISKDATA_PREFIX" {
description = "Virtual Machine Disk Prefix"
type = string
default = ""
}
variable "MD_PROJECT_NAME" {
description = "Project Name Prefix"
type = string
default = ""
}
variable "MD_SUBSCRIPTION_PREFIX" {
description = "Subscription Prefix"
type = string
default = ""
}
variable "MD_REGION_PREFIX" {
description = "Region Prefix"
type = string
default = ""
}