-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpolicy_system_qos.tf
79 lines (73 loc) · 1.76 KB
/
policy_system_qos.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
resource "intersight_fabric_system_qos_policy" "default" {
name = "default"
dynamic "tags" {
for_each = local.tags
content {
key = tags.key
value = tags.value
}
}
organization {
moid = local.organization
}
classes {
admin_state = "Enabled"
bandwidth_percent = 6
cos = 1
mtu = 9000
multicast_optimize = false
name = "Bronze"
packet_drop = true
weight = 1
}
classes {
admin_state = "Enabled"
bandwidth_percent = 6
cos = 2
mtu = 1500
multicast_optimize = true
name = "Silver"
packet_drop = true
weight = 1
}
classes {
admin_state = "Enabled"
bandwidth_percent = 25
cos = 4
mtu = 1500
multicast_optimize = false
name = "Gold"
packet_drop = true
weight = 4
}
classes {
admin_state = "Enabled"
bandwidth_percent = 25
cos = 5
mtu = 1500
multicast_optimize = false
name = "Platinum"
packet_drop = false
weight = 4
}
classes {
admin_state = "Enabled"
bandwidth_percent = 6
cos = 255
mtu = 1500
multicast_optimize = false
name = "Best Effort"
packet_drop = true
weight = 1
}
classes {
admin_state = "Enabled"
bandwidth_percent = 32
cos = 3
mtu = 2240
multicast_optimize = false
name = "FC"
packet_drop = false
weight = 5
}
}