generated from hashicorp/terraform-provider-scaffolding
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New Resource: Waypoint Add-on (#807)
Added new Waypoint Add-on resource and data source, with accompanying acceptance tests --------- Co-authored-by: catsby <[email protected]>
- Loading branch information
1 parent
4b46b4d
commit d928631
Showing
12 changed files
with
1,330 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
```release-note:feature | ||
New resource: Add `hcp_waypoint_add_on` resource for managing Waypoint Add-ons. | ||
New data-source: Add `data.hcp_waypoint_add_on` data-source for Waypoint Add-ons. | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "hcp_waypoint_add_on Data Source - terraform-provider-hcp" | ||
subcategory: "" | ||
description: |- | ||
The Waypoint Add-on data source retrieves information on a given Add-on. | ||
--- | ||
|
||
# hcp_waypoint_add_on (Data Source) | ||
|
||
The Waypoint Add-on data source retrieves information on a given Add-on. | ||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `id` (String) The ID of the Add-on. | ||
- `name` (String) The name of the Add-on. | ||
|
||
### Read-Only | ||
|
||
- `application_id` (String) The ID of the Application that this Add-on is created for. | ||
- `created_by` (String) The user who created the Add-on. | ||
- `definition_id` (String) The ID of the Add-on Definition that this Add-on is created from. | ||
- `description` (String) A longer description of the Add-on. | ||
- `install_count` (Number) The number of installed Add-ons for the same Application that share the same Add-on Definition. | ||
- `labels` (List of String) List of labels attached to this Add-on. | ||
- `organization_id` (String) The ID of the HCP organization where the Waypoint AddOn is located. | ||
- `project_id` (String) The ID of the HCP project where the Waypoint AddOn is located. | ||
- `readme_markdown` (String) Instructions for using the Add-on (markdown format supported). | ||
- `status` (Number) The status of the Terraform run for the Add-on. | ||
- `summary` (String) A short summary of the Add-on. | ||
- `terraform_no_code_module` (Attributes) Terraform Cloud no-code Module details. (see [below for nested schema](#nestedatt--terraform_no_code_module)) | ||
|
||
<a id="nestedatt--terraform_no_code_module"></a> | ||
### Nested Schema for `terraform_no_code_module` | ||
|
||
Read-Only: | ||
|
||
- `source` (String) Terraform Cloud no-code Module Source | ||
- `version` (String) Terraform Cloud no-code Module Version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
--- | ||
page_title: "hcp_waypoint_add_on Resource - terraform-provider-hcp" | ||
subcategory: "HCP Waypoint" | ||
description: |- | ||
Waypoint Add-on resource | ||
--- | ||
|
||
# hcp_waypoint_add_on `Resource` | ||
|
||
-> **Note:** HCP Waypoint is currently in public beta. | ||
|
||
Waypoint Add-on resource | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `application_id` (String) The ID of the Application that this Add-on is created for. | ||
- `definition_id` (String) The ID of the Add-on Definition that this Add-on is created from. | ||
- `name` (String) The name of the Add-on. | ||
|
||
### Optional | ||
|
||
- `project_id` (String) The ID of the HCP project where the Waypoint AddOn is located. | ||
|
||
### Read-Only | ||
|
||
- `created_by` (String) The user who created the Add-on. | ||
- `description` (String) A longer description of the Add-on. | ||
- `id` (String) The ID of the Add-on. | ||
- `install_count` (Number) The number of installed Add-ons for the same Application that share the same Add-on Definition. | ||
- `labels` (List of String) List of labels attached to this Add-on. | ||
- `organization_id` (String) The ID of the HCP organization where the Waypoint AddOn is located. | ||
- `readme_markdown` (String) The markdown for the Add-on README. | ||
- `status` (Number) The status of the Terraform run for the Add-on. | ||
- `summary` (String) A short summary of the Add-on. | ||
- `terraform_no_code_module` (Attributes) Terraform Cloud no-code Module details. (see [below for nested schema](#nestedatt--terraform_no_code_module)) | ||
|
||
<a id="nestedatt--terraform_no_code_module"></a> | ||
### Nested Schema for `terraform_no_code_module` | ||
|
||
Read-Only: | ||
|
||
- `source` (String) Terraform Cloud no-code Module Source | ||
- `version` (String) Terraform Cloud no-code Module Version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.