-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
87 lines (72 loc) · 1.5 KB
/
Copy pathvariables.tf
File metadata and controls
87 lines (72 loc) · 1.5 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
variable "resource_group_name" {
type = string
default = "mate-azure-task-12"
description = "Name of your resource group"
}
variable "location" {
type = string
default = "uksouth"
description = "location for all resources"
}
variable "ssh_key_public" {
type = string
default = "~/.ssh/id_rsa.pub"
description = "Path to your public ssh key on local machine"
}
variable "vm_size" {
type = string
default = "Standard_B1s"
description = "Virtual Machine Size"
}
variable "subnet_name" {
type = string
default = "default"
}
variable "subnet_address_prefix" {
type = string
default = "10.0.0.0/24"
}
variable "admin_username" {
type = string
default = "azureuser"
description = "Admin Username"
}
variable "storage_account_name" {
type = string
default = "defaultstaccn"
description = "name of your storage account"
}
variable "dns_label" {
type = string
default = "matetask"
}
variable "dns_custom_label" {
type = string
default = null
}
variable "vnet_name" {
type = string
default = "vnet"
}
variable "vnet_address_space" {
type = list(string)
default = [
"10.0.0.0/16"
]
}
variable "network_security_group_name" {
type = string
default = "defaultnsg"
}
variable "public_ip_address_name" {
type = string
default = "linuxboxpip"
}
variable "vm_name" {
type = string
default = "matebox"
}
variable "dns_label_prefix" {
type = string
default = "matetask"
}