-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariablesproject.tf
66 lines (55 loc) · 1.52 KB
/
variablesproject.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
# variables.tf
# Recovery Vault Resource Group
variable "recovery_rg_name" {
type = string
description = "Name of the resource group for Recovery Vault"
}
variable "recovery_rg_location" {
type = string
description = "Location of the resource group for Recovery Vault"
default = "eastus"
}
variable "recovery_vault_name" {
type = string
description = "Name of the Recovery Services Vault"
default = "myRecoveryVault"
}
# Virtual Machine Resource Group
variable "vm_rg_name" {
type = string
description = "Name of the resource group for the VM"
}
variable "vm_rg_location" {
type = string
description = "Location of the resource group for the VM"
default = "westus"
}
variable "vnet_name" {
type = string
description = "Name of the Virtual Network"
default = "myVnet"
}
variable "nic_name" {
type = string
description = "Name of the Network Interface"
default = "myNIC"
}
variable "vm_name" {
type = string
description = "Name of the Virtual Machine"
default = "myVM"
}
variable "vm_computer_name" {
type = string
description = "Computer name for the Virtual Machine"
default = "myVM"
}
variable "vm_admin_username" {
type = string
description = "Admin username for the Virtual Machine"
default = "adminuser"
}
variable "vm_admin_password" {
type = string
description = "Admin password for the Virtual Machine"
}