-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
86 lines (71 loc) · 2.3 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
75
76
77
78
79
80
81
82
83
84
85
86
variable "location" {
description = "(Required) Specifies the Azure region to create the resource."
type = string
}
variable "automation_account_name" {
description = "(Required) Specifies the name of the Automation Account"
type = string
}
variable "resource_group_name" {
description = "(Required) The name of the Resource Group for the Automatin Account"
type = string
}
variable "automation_run_as_certificate_name" {
description = "(Optional) The name of the Run As Certificate to configure in the Automation Account."
type = string
default = "AzureRunAsCertificate"
}
variable "environment_tag" {
description = "(Optional) Tag values."
type = string
default = "dev"
}
variable "pre_resource_group_name" {
description = "(Required) The name of the resource to deploy key vault."
type = string
}
variable "key_vault_name" {
description = "(Required) Name of the key vault."
type = string
}
variable "dsc_name" {
description = "(Required) Specifies the name of the DSC to deploy."
type = string
}
variable "dsc_config_name" {
description = "(Required) Specifies the name of the DSC configuraiton to apply on the virtual machine."
type = string
}
variable "dsc_path" {
description = "(Required) Specifies the path to the DSC to deploy."
type = string
}
variable "CLOUD_ENVIRONMENT" {
description = "(Optional) Specifies the cloud environment to sign-in to from PowerShell."
type = string
default = "AzureCloud"
}
variable "ARM_TENANT_ID" {
description = "(Required) Specifies Azure Tenant ID."
type = string
}
variable "vm_extension_name" {
description = "(Optional) Name of the virtual machine extension. Defaults to name of dsc for this example."
type = string
default = "dscWebServer"
}
variable "vm_name" {
description = "(Optional) Virtual machine name where the DSC will be applied."
type = string
default = "vmtestapplydsc"
}
variable "vm_vnet_name" {
description = "(Optional) Virtual network name for the virtual machine."
type = string
default = "vmvnetdsc"
}
variable "vm_subnet_name" {
description = "(Optional) Virtual network subnet name for the virtual machine."
type = string
default = "vmvnetsubnetdsc"
}