-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
60 lines (47 loc) · 1.33 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
variable "resource_group_name" {
description = "The name of the resource group"
}
# Location variable is referenced in multiple resources. ADD New if I want resources to be provisioned in different regions.
# az account list-locations -o table to Get Azure Regions
variable "location" {
description = "The Azure region in which resources will be provisioned"
}
variable "virtual_network_name" {
description = "The name of the Virtual Network"
}
variable "subnet_name" {
description = "The name of the Subnet"
}
variable "network_interface_name" {
description = "The name of the network interface"
}
variable "public_ip_name" {
description = "The name of the Public IP"
}
variable "network_security_group_name" {
description = "The name of the Network Security Group"
}
variable "ip_configuration_name" {
description = "The name of the IP Configuration resource"
}
variable "virtual_machine_name" {
description = "The name of the Virtual Machine"
}
variable "vm_size" {
description = "The size of the Virtual Machine"
}
variable "storage_os_disk" {
description = "The name of the Storage OS disk"
}
variable "computer_name" {
description = "The HOSTNAME"
}
variable "admin_username" {
description = "The admin username"
}
variable "admin_password" {
description = "The admin password"
}
variable "tags" {
type = map(string)
}