Skip to content

Commit

Permalink
update descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
peterwillis committed Mar 28, 2024
1 parent 8d8e35d commit 72c2344
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion internal/provider/vm_data_source.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func (d *VMDataSource) Schema(ctx context.Context, req datasource.SchemaRequest,
},
"metadata": schema.MapAttribute{
ElementType: types.StringType,
MarkdownDescription: "The amount of memory allocated to the VM instance.",
MarkdownDescription: "The key value pairs to associate with the VM.",
Optional: true,
},
"price_hr": schema.Float64Attribute{
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/vm_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ func (r *VMResource) Schema(ctx context.Context, req resource.SchemaRequest, res
PlanModifiers: []planmodifier.String{
stringplanmodifier.RequiresReplace(),
},
MarkdownDescription: "The maximum price per hour for the VM instance.",
MarkdownDescription: "The maximum price per hour for the VM instance",
Optional: true,
},
"memory_gib": schema.Int64Attribute{
Expand All @@ -143,7 +143,7 @@ func (r *VMResource) Schema(ctx context.Context, req resource.SchemaRequest, res
"metadata": schema.MapAttribute{
ElementType: types.StringType,
Optional: true,
MarkdownDescription: "Metadata values to help you identify your virtual machine",
MarkdownDescription: "Metadata values to associate with the VM instance",
},
"networks": schema.ListNestedAttribute{
Optional: true,
Expand Down

0 comments on commit 72c2344

Please sign in to comment.