Skip to content

Commit a7d936f

Browse files
fix typo in virtualNetworkName description in fabric_l3_handoff_ip_transit
1 parent efb6157 commit a7d936f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/data-sources/fabric_l3_handoff_ip_transit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ data "catalystcenter_fabric_l3_handoff_ip_transit" "example" {
3939
- `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
4040
- `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
4141
- `transit_network_id` (String) ID of the transit network of the layer 3 handoff ip transit
42-
- `virtual_network_name` (String) SName of the virtual network associated with this fabric site
42+
- `virtual_network_name` (String) Name of the virtual network associated with this fabric site
4343
- `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)

docs/resources/fabric_l3_handoff_ip_transit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ resource "catalystcenter_fabric_l3_handoff_ip_transit" "example" {
3434
- `fabric_id` (String) ID of the fabric this device belongs to
3535
- `network_device_id` (String) Network device ID of the fabric device
3636
- `transit_network_id` (String) ID of the transit network of the layer 3 handoff ip transit
37-
- `virtual_network_name` (String) SName of the virtual network associated with this fabric site
37+
- `virtual_network_name` (String) Name of the virtual network associated with this fabric site
3838
- `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)
3939

4040
### Optional

gen/definitions/fabric_l3_handoff_ip_transit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ attributes:
6060
response_data_path: virtualNetworkName
6161
mandatory: true
6262
type: String
63-
description: SName of the virtual network associated with this fabric site
63+
description: Name of the virtual network associated with this fabric site
6464
example: SDA_VN1
6565
- model_name: vlanId
6666
data_path: '0'

internal/provider/data_source_catalystcenter_fabric_l3_handoff_ip_transit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ func (d *FabricL3HandoffIPTransitDataSource) Schema(ctx context.Context, req dat
8282
Computed: true,
8383
},
8484
"virtual_network_name": schema.StringAttribute{
85-
MarkdownDescription: "SName of the virtual network associated with this fabric site",
85+
MarkdownDescription: "Name of the virtual network associated with this fabric site",
8686
Computed: true,
8787
},
8888
"vlan_id": schema.Int64Attribute{

internal/provider/resource_catalystcenter_fabric_l3_handoff_ip_transit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ func (r *FabricL3HandoffIPTransitResource) Schema(ctx context.Context, req resou
107107
},
108108
},
109109
"virtual_network_name": schema.StringAttribute{
110-
MarkdownDescription: helpers.NewAttributeDescription("SName of the virtual network associated with this fabric site").String,
110+
MarkdownDescription: helpers.NewAttributeDescription("Name of the virtual network associated with this fabric site").String,
111111
Required: true,
112112
PlanModifiers: []planmodifier.String{
113113
stringplanmodifier.RequiresReplace(),

0 commit comments

Comments
 (0)