generated from hashicorp/terraform-provider-scaffolding-framework
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update everything such that runtime groups become control planes
- Loading branch information
1 parent
0133367
commit 6fe83a4
Showing
36 changed files
with
240 additions
and
226 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
--- | ||
subcategory: "Runtime Configuration" | ||
--- | ||
# Data Source: konnect_runtime_group | ||
Represents a runtime group | ||
# Data Source: konnect_control_plane | ||
Represents a control plane | ||
## Example usage | ||
```hcl | ||
data "konnect_runtime_group" "example" { | ||
name = "TestRuntimeGroup" | ||
data "konnect_control_plane" "example" { | ||
name = "TestControlPlane" | ||
} | ||
``` | ||
## Argument Reference | ||
* `search_name` - **(Optional, String)** The search string to apply to the name of the runtime group. Uses contains. | ||
* `name` - **(Optional, String)** The filter string to apply to the name of the runtime group. Uses equality. | ||
* `search_name` - **(Optional, String)** The search string to apply to the name of the control plane. Uses contains. | ||
* `name` - **(Optional, String)** The filter string to apply to the name of the control plane. Uses equality. | ||
## Attribute Reference | ||
* `id` - **(String)** Guid | ||
* `description` - **(String)** The description of the runtime group. | ||
* `cluster_type` - **(String)** The cluster type of the runtime group. | ||
* `control_plane_endpoint` - **(String)** The control plane endpoint URL of the runtime group. | ||
* `telemetry_endpoint` - **(String)** The telemetry endpoint URL of the runtime group. | ||
* `description` - **(String)** The description of the control plane. | ||
* `cluster_type` - **(String)** The cluster type of the control plane. | ||
* `control_plane_endpoint` - **(String)** The control plane endpoint URL of the control plane. | ||
* `telemetry_endpoint` - **(String)** The telemetry endpoint URL of the control plane. |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
--- | ||
subcategory: "Runtime Configuration" | ||
--- | ||
# Resource: konnect_runtime_group | ||
Represents a runtime group | ||
# Resource: konnect_control_plane | ||
Represents a control plane | ||
## Example usage | ||
```hcl | ||
resource "konnect_runtime_group" "example" { | ||
name = "TestRuntimeGroup" | ||
description = "TestRuntimeGroup" | ||
resource "konnect_control_plane" "example" { | ||
name = "TestControlPlane" | ||
description = "TestControlPlane" | ||
} | ||
``` | ||
## Argument Reference | ||
* `name` - **(Required, String)** The name of the runtime group. | ||
* `description` - **(Optional, String)** The description of the runtime group. | ||
* `name` - **(Required, String)** The name of the control plane. | ||
* `description` - **(Optional, String)** The description of the control plane. | ||
## Attribute Reference | ||
* `id` - **(String)** Guid | ||
* `cluster_type` - **(String)** The cluster type of the runtime group. | ||
* `control_plane_endpoint` - **(String)** The control plane endpoint URL of the runtime group. | ||
* `telemetry_endpoint` - **(String)** The telemetry endpoint URL of the runtime group. | ||
* `cluster_type` - **(String)** The cluster type of the control plane. | ||
* `control_plane_endpoint` - **(String)** The control plane endpoint URL of the control plane. | ||
* `telemetry_endpoint` - **(String)** The telemetry endpoint URL of the control plane. | ||
## Import | ||
Runtime groups can be imported using a proper value of `id` as described above | ||
Control planes can be imported using a proper value of `id` as described above |
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.