-
Notifications
You must be signed in to change notification settings - Fork 8
/
azure-variables.tf
64 lines (55 loc) · 1.5 KB
/
azure-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
# azure-variables.tf | Variables for the Azure module
# Location Resource Group
variable "rg_location" {
type = string
description = "Location of Resource Group"
default = "West Europe"
}
# Vnet CIDR
variable "azure_vnet_cidr" {
type = string
description = "Vnet CIDR"
default = "10.2.0.0/16"
}
# Subnet CIDR
variable "azure_subnet_cidr" {
type = string
description = "Subnet CIDR"
default = "10.2.1.0/24"
}
# Linux VM Admin User
variable "linux_admin_user" {
type = string
description = "Linux VM Admin User"
default = "tfadmin"
}
# Linux VM Admin Password
variable "linux_admin_password" {
type = string
description = "Linux VM Admin Password"
default = "S3cr3tP@ssw0rd"
}
# Linux VM Hostname
variable "linux_vm_hostname" {
type = string
description = "Linux VM Hostname"
default = "azwebserver1"
}
# Ubuntu Linux Publisher used to build VMs
variable "ubuntu-linux-publisher" {
type = string
description = "Ubuntu Linux Publisher used to build VMs"
default = "Canonical"
}
# Ubuntu Linux Offer used to build VMs
variable "ubuntu-linux-offer" {
type = string
description = "Ubuntu Linux Offer used to build VMs"
default = "UbuntuServer"
}
# Ubuntu Linux 18.x SKU used to build VMs
variable "ubuntu-linux-18-sku" {
type = string
description = "Ubuntu Linux Server SKU used to build VMs"
default = "18.04-LTS"
}