-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
69 lines (52 loc) · 1.48 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
variable "location" {
description = "The Azure Region in which the Resource Group exists"
}
variable "rg_name" {
description = "The name of the Resource Group where VM resources will be created"
}
variable "subnet_id" {
description = "The Subnet ID which the VM's NIC should be created in"
}
variable "name" {
description = "The Prefix used for the VM's resources and for the VM hostname"
}
variable "size" {
description = "The VM model"
}
variable "count" {
description = "The number of VM instance should be created"
}
variable "cloudconfig" {
description = "The cloud config contend"
default = ""
}
variable "admin_username" {
description = "The username associated with the local administrator account on the VM"
}
variable "admin_password" {
description = "The password associated with the local administrator account on the VM"
}
variable "network" {
description = "The network to allocate static IP"
}
variable "start_ip" {
description = "Where the IP allocation begin for static private IP"
}
variable "subdomain" {
description = "The subdomain to use for public FQDN"
}
variable "private_domain" {
description = "The private domain to resolv as FQDN"
default = ""
}
variable "data_disk_size" {
description = "The data disk size in Gb"
default = "30"
}
variable "tags" {
description = "List of tags should be associated on all ressoruces"
type = "map"
default = {
module = "module-azure-vm-linux"
}
}