Skip to content

Commit 4f2ca32

Browse files
committed
Docs: Fix trailing quote
1 parent 9998d9f commit 4f2ca32

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/resources/waypoint_application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The Waypoint Application resource managed the lifecycle of an Application that's
2121

2222
### Optional
2323

24-
- `actions` (List of String) List of actions by 'id' to assign to this Template. Applications created from this template will have these actions assigned to them. Only 'ID' is supported'.
24+
- `actions` (List of String) List of actions by 'id' to assign to this Template. Applications created from this template will have these actions assigned to them. Only 'ID' is supported.
2525
- `application_input_variables` (Attributes Set) Input variables set for the application. (see [below for nested schema](#nestedatt--application_input_variables))
2626
- `project_id` (String) The ID of the HCP project where the Waypoint Application is located.
2727
- `readme_markdown` (String) Instructions for using the Application (markdown format supported). Note: this is a base64 encoded string, and can only be set in configuration after initial creation. The initial version of the README is generated from the README Template from source Template.

docs/resources/waypoint_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ EOF
5555

5656
### Optional
5757

58-
- `actions` (List of String) List of actions by 'id' to assign to this Template. Applications created from this template will have these actions assigned to them. Only 'ID' is supported'.
58+
- `actions` (List of String) List of actions by 'id' to assign to this Template. Applications created from this template will have these actions assigned to them. Only 'ID' is supported.
5959
- `description` (String) A description of the template, along with when and why it should be used, up to 500 characters
6060
- `labels` (List of String) List of labels attached to this Template.
6161
- `project_id` (String) The ID of the HCP project where the Waypoint Template is located.

internal/provider/waypoint/resource_waypoint_application.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ func (r *ApplicationResource) Schema(ctx context.Context, req resource.SchemaReq
152152
Optional: true,
153153
Description: "List of actions by 'id' to assign to this Template. " +
154154
"Applications created from this template will have these actions " +
155-
"assigned to them. Only 'ID' is supported'.",
155+
"assigned to them. Only 'ID' is supported.",
156156
ElementType: types.StringType,
157157
PlanModifiers: []planmodifier.List{
158158
listplanmodifier.UseStateForUnknown(),

internal/provider/waypoint/resource_waypoint_template.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ func (r *TemplateResource) Schema(ctx context.Context, req resource.SchemaReques
138138
Optional: true,
139139
Description: "List of actions by 'id' to assign to this Template. " +
140140
"Applications created from this template will have these actions " +
141-
"assigned to them. Only 'ID' is supported'.",
141+
"assigned to them. Only 'ID' is supported.",
142142
ElementType: types.StringType,
143143
PlanModifiers: []planmodifier.List{
144144
listplanmodifier.UseStateForUnknown(),

0 commit comments

Comments
 (0)