-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
36 lines (31 loc) · 905 Bytes
/
variables.tf
File metadata and controls
36 lines (31 loc) · 905 Bytes
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
variable "aci_tenant_name" {
description = "describe Tenant name"
default = "Terraform_Tenant"
}
variable aci_username {
default = "USERNAME"
}
variable aci_password {
default = "PASSWORD"
}
variable aci_url {
default = "ACI_URL"
}
variable "timeout" {
description = "The timeout, in minutes, to wait for the virtual machine clone to complete."
type = number
default = 30
}
locals {
static_vlan_start = "vlan-900"
static_vlan_end = "vlan-999"
access_port = "10"
access_leaf = "101"
PC_port_1 = "5"
PC_port_2 = "19"
PC_leaf = "102"
tdn_1 = "topology/pod-1/paths-101/pathep-[eth1/10]"
tdn_2 = "topology/pod-1/paths-102/pathep-[eth1/5]"
vlan_1 = "vlan-950"
vlan_2 = "vlan-970"
}