-
Notifications
You must be signed in to change notification settings - Fork 7
/
variables.tf
69 lines (63 loc) · 1.57 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
variable admin_cidr_ranges {
type = list
default = []
}
variable azdo_deployment_group_name {}
variable azdo_environment_name {}
variable azdo_org {
nullable = false
}
variable azdo_pat {
nullable = false
}
variable azdo_pipeline_agent_name {}
variable azdo_pipeline_agent_pool {}
variable azdo_pipeline_agent_version_id {}
variable azdo_project {
nullable = false
}
variable create_public_ip_address {
type = bool
}
variable deploy_agent_vm_extension {
type = bool
}
variable deploy_files_share {
type = bool
}
variable deploy_non_essential_vm_extensions {
type = bool
}
variable diagnostics_smb_share {}
variable enable_public_access {
type = bool
}
variable environment_variables {
type = map
}
variable computer_name {}
variable disk_access_name {}
variable name {}
variable os_offer {}
variable os_publisher {}
variable os_sku {}
variable os_version {}
variable os_image_id {
default = null
}
variable storage_type {}
variable vm_size {}
variable location {}
variable log_analytics_workspace_resource_id {}
variable resource_group_name {}
variable shutdown_time {}
variable subnet_id {}
variable suffix {}
variable tags {
type = map
}
variable timezone {}
variable user_assigned_identity_id {}
variable user_name {}
variable user_password {}
variable vm_accelerated_networking {}