-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathprofile_ucs_domain.tf
More file actions
71 lines (65 loc) · 2.16 KB
/
Copy pathprofile_ucs_domain.tf
File metadata and controls
71 lines (65 loc) · 2.16 KB
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
resource "intersight_fabric_switch_cluster_profile" "example" {
name = "example"
dynamic "tags" {
for_each = local.tags
content {
key = tags.key
value = tags.value
}
}
organization {
moid = local.organization
}
type = "instance"
}
resource "intersight_fabric_switch_profile" "example" {
for_each = toset(["A", "B"])
name = "example-${each.key}"
dynamic "tags" {
for_each = local.tags
content {
key = tags.key
value = tags.value
}
}
type = "instance"
policy_bucket { # VLAN Configuration
moid = intersight_fabric_eth_network_policy.default.moid
object_type = intersight_fabric_eth_network_policy.default.object_type
}
policy_bucket { # VSAN Configuration
moid = intersight_fabric_fc_network_policy.default.moid
object_type = intersight_fabric_fc_network_policy.default.object_type
}
policy_bucket { # Port Policy
moid = intersight_fabric_port_policy.default-6454.moid
object_type = intersight_fabric_port_policy.default-6454.object_type
}
policy_bucket { # NTP Policy
moid = intersight_ntp_policy.us_ntp["us_eastern"].moid
object_type = intersight_ntp_policy.us_ntp["us_eastern"].object_type
}
policy_bucket { # SNMP
moid = intersight_snmp_policy.disabled.moid
object_type = intersight_snmp_policy.disabled.object_type
}
policy_bucket { # Switch Control Policy
moid = intersight_fabric_switch_control_policy.default.moid
object_type = intersight_fabric_switch_control_policy.default.object_type
}
policy_bucket { # Syslog
moid = intersight_syslog_policy.local_only.moid
object_type = intersight_syslog_policy.local_only.object_type
}
policy_bucket { # System QoS Policy
moid = intersight_fabric_system_qos_policy.default.moid
object_type = intersight_fabric_system_qos_policy.default.object_type
}
policy_bucket { # Network Connectivity
moid = intersight_networkconfig_policy.default.moid
object_type = intersight_networkconfig_policy.default.object_type
}
switch_cluster_profile {
moid = intersight_fabric_switch_cluster_profile.example.moid
}
}