You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Here is where we store the default values for all the variables used in our
5
+
# Terraform code. If you create a variable with no default, the user will be
6
+
# prompted to enter it (or define it via config file or command line flags.)
7
+
8
+
variable"ssh_key" {
9
+
description="SSH key for connecting to our Red Hat instance"
10
+
}
11
+
12
+
variable"resource_group" {
13
+
description="The name of your Azure Resource Group."
14
+
default="Terraform-Azure-Beginners"
15
+
}
16
+
17
+
variable"prefix" {
18
+
description="This prefix will be included in the name of some resources."
19
+
default="tfguide"
20
+
}
21
+
22
+
variable"hostname" {
23
+
description="Virtual machine hostname. Used for local hostname, DNS, and storage-related names."
24
+
default="catapp"
25
+
}
26
+
27
+
variable"location" {
28
+
description="The region where the virtual network is created."
29
+
default="centralus"
30
+
}
31
+
32
+
variable"virtual_network_name" {
33
+
description="The name for your virtual network."
34
+
default="vnet"
35
+
}
36
+
37
+
variable"address_space" {
38
+
description="The address space that is used by the virtual network. You can supply more than one address space. Changing this forces a new resource to be created."
39
+
default="10.0.0.0/16"
40
+
}
41
+
42
+
variable"subnet_prefix" {
43
+
description="The address prefix to use for the subnet."
44
+
default="10.0.10.0/24"
45
+
}
46
+
47
+
variable"storage_account_tier" {
48
+
description="Defines the storage tier. Valid options are Standard and Premium."
49
+
default="Standard"
50
+
}
51
+
52
+
variable"storage_replication_type" {
53
+
description="Defines the replication type to use for this storage account. Valid options include LRS, GRS etc."
54
+
default="LRS"
55
+
}
56
+
57
+
variable"vm_size" {
58
+
description="Specifies the size of the virtual machine."
59
+
default="Standard_A0"
60
+
}
61
+
62
+
variable"image_publisher" {
63
+
description="Name of the publisher of the image (az vm image list)"
64
+
default="Canonical"
65
+
}
66
+
67
+
variable"image_offer" {
68
+
description="Name of the offer (az vm image list)"
69
+
default="UbuntuServer"
70
+
}
71
+
72
+
variable"image_sku" {
73
+
description="Image SKU to apply (az vm image list)"
74
+
default="16.04-LTS"
75
+
}
76
+
77
+
variable"image_version" {
78
+
description="Version of the image to apply (az vm image list)"
0 commit comments