-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[minor_change] Added aci_l3out_node_sid_profile resource and data-sou…
…rce files
- Loading branch information
Showing
22 changed files
with
2,166 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
--- | ||
# Documentation generated by "gen/generator.go"; DO NOT EDIT. | ||
# In order to regenerate this file execute `go generate` from the repository root. | ||
# More details can be found in the [README](https://github.com/CiscoDevNet/terraform-provider-aci/blob/master/README.md). | ||
subcategory: "L3Out" | ||
layout: "aci" | ||
page_title: "ACI: aci_l3out_node_sid_profile" | ||
sidebar_current: "docs-aci-data-source-aci_l3out_node_sid_profile" | ||
description: |- | ||
Data source for L3out Node Sid Profile | ||
--- | ||
|
||
# aci_l3out_node_sid_profile # | ||
|
||
Data source for L3out Node Sid Profile | ||
|
||
## API Information ## | ||
|
||
* Class: [mplsNodeSidP](https://pubhub.devnetcloud.com/media/model-doc-latest/docs/app/index.html#/objects/mplsNodeSidP/overview) | ||
|
||
* Supported in ACI versions: 5.0(1k) and later. | ||
|
||
* Distinguished Name Format: `uni/tn-{name}/out-{name}/lnodep-{name}/rsnodeL3OutAtt-[{tDn}]/lbp-[{addr}]/nodesidp-{sidoffset}` | ||
|
||
## GUI Information ## | ||
|
||
* Location: `Tenants -> Networking -> L3Outs -> Logical Node Profiles -> Policy -> Nodes -> Policy -> Loopback Addresses` | ||
|
||
## Example Usage ## | ||
|
||
```hcl | ||
data "aci_l3out_node_sid_profile" "example_l3out_loopback_interface_profile" { | ||
parent_dn = aci_l3out_loopback_interface_profile.example.id | ||
sid_offset = "1" | ||
} | ||
``` | ||
|
||
## Schema ## | ||
|
||
### Required ### | ||
|
||
* `parent_dn` - (string) The distinguished name (DN) of the parent object, possible resources: | ||
- [aci_l3out_loopback_interface_profile](https://registry.terraform.io/providers/CiscoDevNet/aci/latest/docs/resources/l3out_loopback_interface_profile) ([l3extLoopBackIfP](https://pubhub.devnetcloud.com/media/model-doc-latest/docs/app/index.html#/objects/l3extLoopBackIfP/overview)) | ||
* `sid_offset` (sidoffset) - (string) The offset ID of the L3out Node Sid Profile object. | ||
|
||
### Read-Only ### | ||
|
||
* `id` - (string) The distinguished name (DN) of the L3out Node Sid Profile object. | ||
* `annotation` (annotation) - (string) The annotation of the L3out Node Sid Profile object. | ||
* `description` (descr) - (string) The description of the L3out Node Sid Profile object. | ||
* `loopback_address` (loopbackAddr) - (string) The loopback address of the L3out Node Sid Profile object. | ||
* `name` (name) - (string) The name of the L3out Node Sid Profile object. | ||
* `name_alias` (nameAlias) - (string) The name alias of the L3out Node Sid Profile object. | ||
|
||
* `annotations` - (list) A list of Annotations (ACI object [tagAnnotation](https://pubhub.devnetcloud.com/media/model-doc-latest/docs/app/index.html#/objects/tagAnnotation/overview)). This attribute is supported in ACI versions: 3.2(1l) and later. | ||
* `key` (key) - (string) The key used to uniquely identify this configuration object. | ||
* `value` (value) - (string) The value of the property. | ||
|
||
* `tags` - (list) A list of Tags (ACI object [tagTag](https://pubhub.devnetcloud.com/media/model-doc-latest/docs/app/index.html#/objects/tagTag/overview)). This attribute is supported in ACI versions: 3.2(1l) and later. | ||
* `key` (key) - (string) The key used to uniquely identify this configuration object. | ||
* `value` (value) - (string) The value of the property. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.