Skip to content

Commit

Permalink
fix typo in virtualNetworkName description in fabric_l3_handoff_ip_tr…
Browse files Browse the repository at this point in the history
…ansit
  • Loading branch information
kuba-mazurkiewicz committed Aug 5, 2024
1 parent efb6157 commit a7d936f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/data-sources/fabric_l3_handoff_ip_transit.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ data "catalystcenter_fabric_l3_handoff_ip_transit" "example" {
- `remote_ipv6_address` (String) Remote ipv6 address for the selected virtual network. Enter the IP addresses and subnet mask in the CIDR notation (IP address/prefix-length). Not applicable if you have already provided an external connectivity ip pool name
- `tcp_mss_adjustment` (Number) TCP maximum segment size (mss) value for the layer 3 handoff. Allowed range is [500-1440]. TCP MSS Adjustment value is applicable for the TCP sessions over both IPv4 and IPv6
- `transit_network_id` (String) ID of the transit network of the layer 3 handoff ip transit
- `virtual_network_name` (String) SName of the virtual network associated with this fabric site
- `virtual_network_name` (String) Name of the virtual network associated with this fabric site
- `vlan_id` (Number) VLAN number for the Switch Virtual Interface (SVI) used to establish BGP peering with the external domain for the virtual network. Allowed VLAN range is 2-4094 except for reserved vlans (1, 1002-1005, 2046, 4094)
2 changes: 1 addition & 1 deletion docs/resources/fabric_l3_handoff_ip_transit.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ resource "catalystcenter_fabric_l3_handoff_ip_transit" "example" {
- `fabric_id` (String) ID of the fabric this device belongs to
- `network_device_id` (String) Network device ID of the fabric device
- `transit_network_id` (String) ID of the transit network of the layer 3 handoff ip transit
- `virtual_network_name` (String) SName of the virtual network associated with this fabric site
- `virtual_network_name` (String) Name of the virtual network associated with this fabric site
- `vlan_id` (Number) VLAN number for the Switch Virtual Interface (SVI) used to establish BGP peering with the external domain for the virtual network. Allowed VLAN range is 2-4094 except for reserved vlans (1, 1002-1005, 2046, 4094)

### Optional
Expand Down
2 changes: 1 addition & 1 deletion gen/definitions/fabric_l3_handoff_ip_transit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ attributes:
response_data_path: virtualNetworkName
mandatory: true
type: String
description: SName of the virtual network associated with this fabric site
description: Name of the virtual network associated with this fabric site
example: SDA_VN1
- model_name: vlanId
data_path: '0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func (d *FabricL3HandoffIPTransitDataSource) Schema(ctx context.Context, req dat
Computed: true,
},
"virtual_network_name": schema.StringAttribute{
MarkdownDescription: "SName of the virtual network associated with this fabric site",
MarkdownDescription: "Name of the virtual network associated with this fabric site",
Computed: true,
},
"vlan_id": schema.Int64Attribute{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func (r *FabricL3HandoffIPTransitResource) Schema(ctx context.Context, req resou
},
},
"virtual_network_name": schema.StringAttribute{
MarkdownDescription: helpers.NewAttributeDescription("SName of the virtual network associated with this fabric site").String,
MarkdownDescription: helpers.NewAttributeDescription("Name of the virtual network associated with this fabric site").String,
Required: true,
PlanModifiers: []planmodifier.String{
stringplanmodifier.RequiresReplace(),
Expand Down

0 comments on commit a7d936f

Please sign in to comment.