Skip to content

Commit e0b2c09

Browse files
authored
fix(docs): fix typos in IaaS routingtable docs (#1030)
Signed-off-by: Mauritz Uphoff <[email protected]>
1 parent c733535 commit e0b2c09

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/data-sources/routing_table_route.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@ Read-Only:
6161

6262
Read-Only:
6363

64-
- `type` (String) Possible values are: `blackhole`, `internet`, `ipv4`, `ipv6`. Only `cidrv4` is supported during experimental stage..
64+
- `type` (String) Type of the next hop. Possible values are: `blackhole`, `internet`, `ipv4`, `ipv6`.
6565
- `value` (String) Either IPv4 or IPv6 (not set for blackhole and internet). Only IPv4 supported during experimental stage.

docs/data-sources/routing_table_routes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,5 @@ Read-Only:
6767

6868
Read-Only:
6969

70-
- `type` (String) Possible values are: `blackhole`, `internet`, `ipv4`, `ipv6`. Only `cidrv4` is supported during experimental stage..
70+
- `type` (String) Type of the next hop. Possible values are: `blackhole`, `internet`, `ipv4`, `ipv6`.
7171
- `value` (String) Either IPv4 or IPv6 (not set for blackhole and internet). Only IPv4 supported during experimental stage.

docs/resources/routing_table_route.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Required:
7777

7878
Required:
7979

80-
- `type` (String) Possible values are: `blackhole`, `internet`, `ipv4`, `ipv6`. Only `cidrv4` is supported during experimental stage..
80+
- `type` (String) Type of the next hop. Possible values are: `blackhole`, `internet`, `ipv4`, `ipv6`.
8181

8282
Optional:
8383

stackit/internal/services/iaasalpha/routingtable/route/resource.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ func (r *routeResource) Schema(_ context.Context, _ resource.SchemaRequest, resp
201201
Required: true,
202202
Attributes: map[string]schema.Attribute{
203203
"type": schema.StringAttribute{
204-
Description: fmt.Sprintf("%s %s.", utils.FormatPossibleValues("blackhole", "internet", "ipv4", "ipv6"), "Only `cidrv4` is supported during experimental stage."),
204+
Description: "Type of the next hop. " + utils.FormatPossibleValues("blackhole", "internet", "ipv4", "ipv6"),
205205
Required: true,
206206
PlanModifiers: []planmodifier.String{
207207
stringplanmodifier.RequiresReplace(),

stackit/internal/services/iaasalpha/routingtable/shared/shared.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ func RouteResponseAttributes() map[string]schema.Attribute {
156156
Computed: true,
157157
Attributes: map[string]schema.Attribute{
158158
"type": schema.StringAttribute{
159-
Description: fmt.Sprintf("%s %s.", utils.FormatPossibleValues("blackhole", "internet", "ipv4", "ipv6"), "Only `cidrv4` is supported during experimental stage."),
159+
Description: "Type of the next hop. " + utils.FormatPossibleValues("blackhole", "internet", "ipv4", "ipv6"),
160160
Computed: true,
161161
},
162162
"value": schema.StringAttribute{

0 commit comments

Comments
 (0)