Skip to content

Commit 665dc04

Browse files
committed
Docs: id -> ID
1 parent aa38969 commit 665dc04

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

docs/data-sources/waypoint_application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The Waypoint Application data source retrieves information on a given Applicatio
1616

1717
### Optional
1818

19-
- `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.
19+
- `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.
2020
- `id` (String) The ID of the Application.
2121
- `input_variables` (Attributes Set) Input variables for the Application. (see [below for nested schema](#nestedatt--input_variables))
2222
- `name` (String) The name of the Application.

docs/data-sources/waypoint_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ data "hcp_waypoint_template" "example" {
2323

2424
### Optional
2525

26-
- `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.
26+
- `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.
2727
- `id` (String) The ID of the Template.
2828
- `name` (String) The name of the Template.
2929
- `project_id` (String) The ID of the HCP project where the Waypoint Template is located.

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/data_source_waypoint_application.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ func (d *DataSourceApplication) Schema(ctx context.Context, req datasource.Schem
8383
},
8484
"actions": schema.ListAttribute{
8585
Optional: true,
86-
Description: "List of actions by 'id' to assign to this Template. " +
87-
"Applications created from this template will have these actions " +
86+
Description: "List of actions by 'ID' to assign to this Template. " +
87+
"Applications created from this Template will have these actions " +
8888
"assigned to them. Only 'ID' is supported.",
8989
ElementType: types.StringType,
9090
},

internal/provider/waypoint/data_source_waypoint_template.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ func (d *DataSourceTemplate) Schema(ctx context.Context, req datasource.SchemaRe
9898
},
9999
"actions": schema.ListAttribute{
100100
Optional: true,
101-
Description: "List of actions by 'id' to assign to this Template. " +
102-
"Applications created from this template will have these actions " +
101+
Description: "List of actions by 'ID' to assign to this Template. " +
102+
"Applications created from this Template will have these actions " +
103103
"assigned to them. Only 'ID' is supported.",
104104
ElementType: types.StringType,
105105
},

internal/provider/waypoint/resource_waypoint_application.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ func (r *ApplicationResource) Schema(ctx context.Context, req resource.SchemaReq
150150
},
151151
"actions": schema.ListAttribute{
152152
Optional: true,
153-
Description: "List of actions by 'id' to assign to this Template. " +
154-
"Applications created from this template will have these actions " +
153+
Description: "List of actions by 'ID' to assign to this Template. " +
154+
"Applications created from this Template will have these actions " +
155155
"assigned to them. Only 'ID' is supported.",
156156
ElementType: types.StringType,
157157
PlanModifiers: []planmodifier.List{

internal/provider/waypoint/resource_waypoint_template.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ func (r *TemplateResource) Schema(ctx context.Context, req resource.SchemaReques
136136
},
137137
"actions": schema.ListAttribute{
138138
Optional: true,
139-
Description: "List of actions by 'id' to assign to this Template. " +
140-
"Applications created from this template will have these actions " +
139+
Description: "List of actions by 'ID' to assign to this Template. " +
140+
"Applications created from this Template will have these actions " +
141141
"assigned to them. Only 'ID' is supported.",
142142
ElementType: types.StringType,
143143
PlanModifiers: []planmodifier.List{

0 commit comments

Comments
 (0)