-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathvariables.tf
82 lines (68 loc) · 2.15 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
#VARIABLES
variable "instance_name" {
description = "Name assigned to the instance. An instance number will be appended to the name."
type = string
default = "stcv"
}
variable "instance_size" {
description = "Specifies the size of the STCv VM instance."
type = string
default = "Standard_DS3_v2"
}
variable "instance_count" {
description = "Number of STCv instances to create."
type = number
default = 2
}
variable "resource_group_name" {
description = "Resource group name in Azure."
type = string
default = "default"
}
variable "resource_group_location" {
description = "Resource group location in Azure."
type = string
default = "West US"
}
variable "enable_accelerated_networking" {
description = "Enable or disable accelerated networking on the network interface."
type = bool
default = "true"
}
variable "admin_username" {
description = "Administrator user name."
type = string
default = "azureuser"
}
variable "mgmt_plane_subnet_id" {
description = "Management public Azure subnet ID."
type = string
default = ""
}
variable "test_plane_subnet_id" {
description = "Test or data plane Azure subnet ID."
type = string
default = ""
}
variable "ingress_cidr_blocks" {
description = "List of management interface ingress IPv4/IPv6 CIDR ranges."
type = list(string)
}
variable "public_key" {
description = "File path to public key."
type = string
}
variable "stcv_image_name" {
description = "The Spirent TestCenter Virtual image created from private vhd file. This variable overrides the marketplace image."
type = string
default = ""
}
variable "marketplace_version" {
description = "The Spirent TestCenter Virtual image version (e.g. 5.15.0106). When not specified, the latest marketplace image will be used."
type = string
default = "latest"
}
variable "user_data_file" {
description = "Path to the file containing user data for the instance. See README for Spirent TestCenter Virtual cloud-init configuration parameters that are supported."
type = string
}