-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
35 changed files
with
1,532 additions
and
1 deletion.
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,34 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "nxos_bridge_domain Data Source - terraform-provider-nxos" | ||
subcategory: "" | ||
description: |- | ||
This data source can read a bridge domain. | ||
--- | ||
|
||
# nxos_bridge_domain (Data Source) | ||
|
||
This data source can read a bridge domain. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "nxos_bridge_domain" "example" { | ||
fabric_encap = "vlan-10" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- **fabric_encap** (String) Fabric encapsulation. Possible values are `unknown`, `vlan-XX` or `vxlan-XX`. | ||
|
||
### Read-Only | ||
|
||
- **access_encap** (String) Access encapsulation. Possible values are `unknown`, `vlan-XX` or `vxlan-XX`. | ||
- **id** (String) The distinguished name of the object. | ||
- **name** (String) Bridge domain name. | ||
|
||
|
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,33 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "nxos_vrf Data Source - terraform-provider-nxos" | ||
subcategory: "" | ||
description: |- | ||
This data source can read a VRF. | ||
--- | ||
|
||
# nxos_vrf (Data Source) | ||
|
||
This data source can read a VRF. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "nxos_vrf" "example" { | ||
name = "VRF1" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- **name** (String) VRF name. | ||
|
||
### Read-Only | ||
|
||
- **description** (String) VRF description. | ||
- **id** (String) The distinguished name of the object. | ||
|
||
|
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,32 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "nxos_vrf_container Data Source - terraform-provider-nxos" | ||
subcategory: "" | ||
description: |- | ||
This data source can read a VRF container. | ||
--- | ||
|
||
# nxos_vrf_container (Data Source) | ||
|
||
This data source can read a VRF container. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "nxos_vrf_container" "example" { | ||
name = "VRF1" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- **name** (String) VRF name. | ||
|
||
### Read-Only | ||
|
||
- **id** (String) The distinguished name of the object. | ||
|
||
|
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,50 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "nxos_bridge_domain Resource - terraform-provider-nxos" | ||
subcategory: "" | ||
description: |- | ||
This resource can manage a bridge domain. | ||
API Documentation: ipv4If https://pubhub.devnetcloud.com/media/dme-docs-10-2-2/docs/System/l2:BD/ | ||
--- | ||
|
||
# nxos_bridge_domain (Resource) | ||
|
||
This resource can manage a bridge domain. | ||
|
||
- API Documentation: [ipv4If](https://pubhub.devnetcloud.com/media/dme-docs-10-2-2/docs/System/l2:BD/) | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "nxos_bridge_domain" "example" { | ||
fabric_encap = "vlan-10" | ||
access_encap = "unknown" | ||
name = "VLAN10" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- **fabric_encap** (String) Fabric encapsulation. Possible values are `unknown`, `vlan-XX` or `vxlan-XX`. | ||
- Default value: `unknown` | ||
|
||
### Optional | ||
|
||
- **access_encap** (String) Access encapsulation. Possible values are `unknown`, `vlan-XX` or `vxlan-XX`. | ||
- Default value: `unknown` | ||
- **name** (String) Bridge domain name. | ||
|
||
### Read-Only | ||
|
||
- **id** (String) The distinguished name of the object. | ||
|
||
## Import | ||
|
||
Import is supported using the following syntax: | ||
|
||
```shell | ||
terraform import nxos_bridge_domain.example "sys/bd/bd-[vlan-10]" | ||
``` |
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,46 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "nxos_vrf Resource - terraform-provider-nxos" | ||
subcategory: "" | ||
description: |- | ||
This resource can manage a VRF. | ||
API Documentation: ipv4If https://pubhub.devnetcloud.com/media/dme-docs-10-2-2/docs/System/l3:Inst/ | ||
--- | ||
|
||
# nxos_vrf (Resource) | ||
|
||
This resource can manage a VRF. | ||
|
||
- API Documentation: [ipv4If](https://pubhub.devnetcloud.com/media/dme-docs-10-2-2/docs/System/l3:Inst/) | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "nxos_vrf" "example" { | ||
name = "VRF1" | ||
description = "My VRF1 Description" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- **name** (String) VRF name. | ||
|
||
### Optional | ||
|
||
- **description** (String) VRF description. | ||
|
||
### Read-Only | ||
|
||
- **id** (String) The distinguished name of the object. | ||
|
||
## Import | ||
|
||
Import is supported using the following syntax: | ||
|
||
```shell | ||
terraform import nxos_vrf.example "sys/inst-[VRF1]" | ||
``` |
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,41 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "nxos_vrf_container Resource - terraform-provider-nxos" | ||
subcategory: "" | ||
description: |- | ||
This resource can manage a VRF container. | ||
API Documentation: ipv4If https://pubhub.devnetcloud.com/media/dme-docs-10-2-2/docs/System/l3:Inst/ | ||
--- | ||
|
||
# nxos_vrf_container (Resource) | ||
|
||
This resource can manage a VRF container. | ||
|
||
- API Documentation: [ipv4If](https://pubhub.devnetcloud.com/media/dme-docs-10-2-2/docs/System/l3:Inst/) | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "nxos_vrf_container" "example" { | ||
name = "VRF1" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- **name** (String) VRF name. | ||
|
||
### Read-Only | ||
|
||
- **id** (String) The distinguished name of the object. | ||
|
||
## Import | ||
|
||
Import is supported using the following syntax: | ||
|
||
```shell | ||
terraform import nxos_vrf_container.example "sys/ipv4/inst/dom-[VRF1]" | ||
``` |
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,3 @@ | ||
data "nxos_bridge_domain" "example" { | ||
fabric_encap = "vlan-10" | ||
} |
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,3 @@ | ||
data "nxos_vrf" "example" { | ||
name = "VRF1" | ||
} |
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,3 @@ | ||
data "nxos_vrf_container" "example" { | ||
name = "VRF1" | ||
} |
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 @@ | ||
terraform import nxos_bridge_domain.example "sys/bd/bd-[vlan-10]" |
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,5 @@ | ||
resource "nxos_bridge_domain" "example" { | ||
fabric_encap = "vlan-10" | ||
access_encap = "unknown" | ||
name = "VLAN10" | ||
} |
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 @@ | ||
terraform import nxos_vrf.example "sys/inst-[VRF1]" |
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,4 @@ | ||
resource "nxos_vrf" "example" { | ||
name = "VRF1" | ||
description = "My VRF1 Description" | ||
} |
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 @@ | ||
terraform import nxos_vrf_container.example "sys/ipv4/inst/dom-[VRF1]" |
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,3 @@ | ||
resource "nxos_vrf_container" "example" { | ||
name = "VRF1" | ||
} |
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,27 @@ | ||
--- | ||
name: Bridge Domain | ||
class_name: l2BD | ||
dn: sys/bd/bd-[%s] | ||
ds_description: |- | ||
This data source can read a bridge domain. | ||
res_description: |- | ||
This resource can manage a bridge domain.\n\n- API Documentation: [ipv4If](https://pubhub.devnetcloud.com/media/dme-docs-10-2-2/docs/System/l2:BD/) | ||
attributes: | ||
- nxos_name: fabEncap | ||
tf_name: fabric_encap | ||
type: String | ||
id: true | ||
description: 'Fabric encapsulation. Possible values are `unknown`, `vlan-XX` or `vxlan-XX`.' | ||
default_value: unknown | ||
example: vlan-10 | ||
- nxos_name: accEncap | ||
tf_name: access_encap | ||
type: String | ||
description: 'Access encapsulation. Possible values are `unknown`, `vlan-XX` or `vxlan-XX`.' | ||
default_value: unknown | ||
example: unknown | ||
- nxos_name: name | ||
tf_name: name | ||
type: String | ||
description: 'Bridge domain name.' | ||
example: VLAN10 |
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,20 @@ | ||
--- | ||
name: VRF | ||
class_name: l3Inst | ||
dn: sys/inst-[%s] | ||
ds_description: |- | ||
This data source can read a VRF. | ||
res_description: |- | ||
This resource can manage a VRF.\n\n- API Documentation: [ipv4If](https://pubhub.devnetcloud.com/media/dme-docs-10-2-2/docs/System/l3:Inst/) | ||
attributes: | ||
- nxos_name: name | ||
tf_name: name | ||
type: String | ||
id: true | ||
description: 'VRF name.' | ||
example: 'VRF1' | ||
- nxos_name: descr | ||
tf_name: description | ||
type: String | ||
description: 'VRF description.' | ||
example: My VRF1 Description |
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,15 @@ | ||
--- | ||
name: VRF Container | ||
class_name: ipv4Dom | ||
dn: sys/ipv4/inst/dom-[%s] | ||
ds_description: |- | ||
This data source can read a VRF container. | ||
res_description: |- | ||
This resource can manage a VRF container.\n\n- API Documentation: [ipv4If](https://pubhub.devnetcloud.com/media/dme-docs-10-2-2/docs/System/l3:Inst/) | ||
attributes: | ||
- nxos_name: name | ||
tf_name: name | ||
type: String | ||
id: true | ||
description: 'VRF name.' | ||
example: 'VRF1' |
Oops, something went wrong.