Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix documentation typo: iplink vs. ip_link #966

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apstra/blueprint/connectivity_template_assignments.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func (o ConnectivityTemplateAssignments) ResourceAttributes() map[string]resourc
"primitives are attached to a switch interface. These logical links may or may not be VLAN-tagged. " +
"This attribute is a two-dimensional map. The outer map is keyed by Application Point ID. The inner " +
"map is keyed by VLAN number. Untagged Logical Links are represented in the inner map by key `0`.\n" +
"**Note:** requires `fetch_iplink_ids = true`",
"**Note:** requires `fetch_ip_link_ids = true`",
Computed: true,
ElementType: types.MapType{ElemType: types.StringType},
},
Expand Down
2 changes: 1 addition & 1 deletion apstra/blueprint/connectivity_templates_assignment.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func (o ConnectivityTemplatesAssignment) ResourceAttributes() map[string]resourc
"primitives are attached to a switch interface. These logical links may or may not be VLAN-tagged. " +
"This attribute is a two-dimensional map. The outer map is keyed by Connectivity Template ID. The inner " +
"map is keyed by VLAN number. Untagged Logical Links are represented in the inner map by key `0`.\n" +
"**Note:** requires `fetch_iplink_ids = true`",
"**Note:** requires `fetch_ip_link_ids = true`",
Computed: true,
ElementType: types.MapType{ElemType: types.StringType},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ resource "apstra_datacenter_connectivity_template_assignments" "a" {
### Read-Only

- `ip_link_ids` (Map of Map of String) New Logical Links are created when Connectivity Templates containing *IP Link* primitives are attached to a switch interface. These logical links may or may not be VLAN-tagged. This attribute is a two-dimensional map. The outer map is keyed by Application Point ID. The inner map is keyed by VLAN number. Untagged Logical Links are represented in the inner map by key `0`.
**Note:** requires `fetch_iplink_ids = true`
**Note:** requires `fetch_ip_link_ids = true`



Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ resource "apstra_datacenter_connectivity_templates_assignment" "a" {
### Read-Only

- `ip_link_ids` (Map of Map of String) New Logical Links are created when Connectivity Templates containing *IP Link* primitives are attached to a switch interface. These logical links may or may not be VLAN-tagged. This attribute is a two-dimensional map. The outer map is keyed by Connectivity Template ID. The inner map is keyed by VLAN number. Untagged Logical Links are represented in the inner map by key `0`.
**Note:** requires `fetch_iplink_ids = true`
**Note:** requires `fetch_ip_link_ids = true`



Loading