File tree Expand file tree Collapse file tree 3 files changed +82
-0
lines changed Expand file tree Collapse file tree 3 files changed +82
-0
lines changed Original file line number Diff line number Diff line change 219219 < li <%= sidebar_current ( "docs-aci-data-source-miscabling_protocol_interface_policy" ) %> >
220220 < a href ="/docs/providers/aci/d/miscabling_protocol_interface_policy.html "> aci_miscabling_protocol_interface_policy</ a >
221221 </ li >
222+ < li <%= sidebar_current ( "docs-aci-data-source-monitoring_policy" ) %> >
223+ < a href ="/docs/providers/aci/d/monitoring_policy.html "> aci_monitoring_policy</ a >
224+ </ li >
222225 < li <%= sidebar_current ( "docs-aci-data-source-node_block" ) %> >
223226 < a href ="/docs/providers/aci/d/node_block.html "> aci_node_block</ a >
224227 </ li >
513516 < li <%= sidebar_current ( "docs-aci-resource-miscabling_protocol_interface_policy" ) %> >
514517 < a href ="/docs/providers/aci/r/miscabling_protocol_interface_policy.html "> aci_miscabling_protocol_interface_policy</ a >
515518 </ li >
519+ < li <%= sidebar_current ( "docs-aci-resource-monitoring_policy" ) %> >
520+ < a href ="/docs/providers/aci/r/monitoring_policy.html "> aci_monitoring_policy</ a >
521+ </ li >
516522 < li <%= sidebar_current ( "docs-aci-resource-node_block" ) %> >
517523 < a href ="/docs/providers/aci/r/node_block.html "> aci_node_block</ a >
518524 </ li >
Original file line number Diff line number Diff line change 1+ ---
2+ layout : " aci"
3+ page_title : " ACI: aci_monitoring_policy"
4+ sidebar_current : " docs-aci-data-source-monitoring_policy"
5+ description : |-
6+ Data source for ACI Monitoring Policy
7+ ---
8+
9+ # aci_monitoring_policy #
10+ Data source for ACI Monitoring Policy
11+
12+ ## Example Usage ##
13+
14+ ``` hcl
15+ data "aci_monitoring_policy" "example" {
16+ tenant_dn = "example"
17+ name = "example"
18+ }
19+ ```
20+
21+
22+ ## Argument Reference ##
23+ * ` tenant_dn ` - (Required) tenant dn of object monitoring policy.
24+ * ` name ` - (Required) name of object monitoring policy.
25+
26+
27+ ## Attribute Reference
28+
29+ * ` id ` - Attribute id set to the Dn of the object monitoring policy.
30+ * ` annotation ` - (Optional) annotation for object monitoring policy.
31+ * ` name_alias ` - (Optional) name_alias for object monitoring policy.
Original file line number Diff line number Diff line change 1+ ---
2+ layout : " aci"
3+ page_title : " ACI: aci_monitoring_policy"
4+ sidebar_current : " docs-aci-resource-monitoring_policy"
5+ description : |-
6+ Manages ACI Monitoring Policy
7+ ---
8+
9+ # aci_monitoring_policy #
10+ Manages ACI Monitoring Policy
11+
12+ ## Example Usage ##
13+
14+ ``` hcl
15+ resource "aci_monitoring_policy" "example" {
16+ tenant_dn = "example"
17+ name = "example"
18+ name_alias = "example"
19+ }
20+ ```
21+
22+
23+ ## Argument Reference ##
24+
25+ * ` name ` - (Required) name of object monitoring policy.
26+ * ` tenant_dn ` - (Required) tenant dn for monitoring policy.
27+ * ` name_alias ` - (Optional) name alias for monitoring policy.
28+ * ` annotation ` - (Optional) annotation for object monitoring policy.
29+
30+
31+
32+ ## Attribute Reference
33+
34+ The only attribute that this resource exports is the ` id ` , which is set to the
35+ Dn of the monitoring Policy.
36+
37+ ## Importing ##
38+
39+ An existing monitoring Policy can be [ imported] [ docs-import ] into this resource via its Dn, via the following command:
40+ [ docs-import ] : https://www.terraform.io/docs/import/index.html
41+
42+
43+ ```
44+ terraform import aci_monitoring_policy.example <Dn>
45+ ```
You can’t perform that action at this time.
0 commit comments