-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
76 lines (63 loc) · 2.18 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
## "RG-" automatico no main.tf
variable "resource_group_name" {
type = map(string)
default = {
"name" = "Lab"
"location" = "eastus"
"storage" = "adlab10002"
}
}
variable "VirtualMachine" {
type = map(string)
default = {
## User
"ad_safe_mode_administrator_password" = "Pa$$w0rd"
"admin_username" = "xbox"
"admin_password" = "Pa$$w0rd"
## Active Directory
ad_domain_name = "monga.tech"
ad_domain_netbios_name = "MONGA"
ad_database_path = "C:/Windows/NTDS"
ad_sysvol_path = "C:/Windows/SYSVOL"
ad_log_path = "C:/Windows/NTDS"
ad_domain_netbios_name = "MONGA"
"ad_domain_mode" = "WinThreshold"
## OS Config
"VM_Name" = "ADDCMG01"
"size" = "Standard_B2ms" #"Standard_DS3_v2"
"storage_account_type" = "Standard_LRS"
## Source Image Reference
"publisher" = "MicrosoftWindowsServer" #"Canonical"
"offer" = "WindowsServer" #"UbuntuServer"
"sku" = "2022-Datacenter" #"20.04-LTS"
"version" = "latest"
}
}
variable "scfile" {
type = string
default = "linux-vm-docker.bash"
}
variable "tags" {
type = map(string)
default = {
env = "Active-Directory",
rg = "RG-Monga-lab",
dept = "TI",
costcenter = "Resource"
}
}
#############################################
#############################################
### VM SIZES ###
#############################################
### D2as_v4 | CPU 02 | RAM 08 ($ 78.11) ###
### B2ms | CPU 02 | RAM 04 ($ 66.43) ###
#############################################
### B4ms | CPU 04 | RAM 16 ($132.86) ###
#############################################
### E4_v5 | CPU 04 | RAM 32 ($205.86) ###
### DS3_v2 | CPU 04 | RAM 14 ($250.39) ###
#############################################
### D8s_v5 | CPU 08 | RAM 32 ($312.44) ###
#############################################
#############################################