generated from kolosovpetro/terraform-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
74 lines (60 loc) · 2.01 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
68
69
70
71
72
73
74
variable "resource_group_location" {
type = string
description = "Resource group location"
}
variable "prefix" {
type = string
description = "Prefix for all resources"
}
variable "vm_size" {
type = string
description = "The size of the virtual machine."
}
variable "storage_image_reference_publisher" {
type = string
description = "The publisher of the image used to create the virtual machine."
}
variable "storage_image_reference_offer" {
type = string
description = "Specifies the offer of the platform image or marketplace image used to create the virtual machine."
}
variable "storage_image_reference_sku" {
type = string
description = "Specifies the SKU of the platform image or marketplace image used to create the virtual machine."
}
variable "storage_image_reference_version" {
type = string
description = "Specifies the version of the platform image or marketplace image used to create the virtual machine."
}
variable "storage_os_disk_caching" {
type = string
description = "Specifies the caching requirements for the OS disk."
}
variable "storage_os_disk_create_option" {
type = string
description = "Specifies how the virtual machine should be created."
}
variable "storage_os_disk_managed_disk_type" {
type = string
description = "Specifies the storage account type for the managed disk."
}
variable "os_profile_admin_username" {
type = string
description = "Specifies the name of the administrator account."
}
variable "os_profile_admin_password" {
type = string
description = "Specifies the password of the administrator account."
}
variable "storage_account_replication" {
type = string
description = "Specifies the replication type for this storage account."
}
variable "storage_account_tier" {
type = string
description = "Specifies the tier to use for this storage account."
}
variable "subscription_id" {
type = string
description = "Azure subscription ID"
}