Skip to content

Commit de7be12

Browse files
Jonas Gottliebrubenhoenle
authored andcommitted
fix: typo and adapt description
1 parent 4eab8fb commit de7be12

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,8 @@ func RoutingTableResponseAttributes() map[string]schema.Attribute {
210210
Description: "This controls whether the routes for project-to-project communication are created automatically or not.",
211211
Computed: true,
212212
},
213-
"dynamic_ro": schema.BoolAttribute{
214-
Description: "This controls whether the routes for project-to-project communication are created automatically or not.",
213+
"dynamic_routes": schema.BoolAttribute{
214+
Description: "This controls whether dynamic routes are propagated to this routing table",
215215
Computed: true,
216216
},
217217
"created_at": schema.StringAttribute{

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ func (r *routingTableResource) Schema(_ context.Context, _ resource.SchemaReques
208208
},
209209
},
210210
"dynamic_routes": schema.BoolAttribute{
211-
Description: "This controls whether the routes for project-to-project communication are created automatically or not.",
211+
Description: "This controls whether dynamic routes are propagated to this routing table",
212212
Optional: true,
213213
Computed: true,
214214
Default: booldefault.StaticBool(true),

0 commit comments

Comments
 (0)