-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add docs for PCG IPAM pool and the data resource (#514)
* docs: add docs for PCG IPAM pool and the data resource * chore: minor example touch up. * chore: issued go fmt
- Loading branch information
1 parent
f67d5c0
commit 308d1da
Showing
6 changed files
with
161 additions
and
37 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 |
---|---|---|
@@ -1,21 +1,30 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "spectrocloud_private_cloud_gateway Data Source - terraform-provider-spectrocloud" | ||
subcategory: "" | ||
description: |- | ||
A data resource to get the ID or name of Private Cloud Gateway. | ||
--- | ||
|
||
# spectrocloud_private_cloud_gateway (Data Source) | ||
|
||
A data resource to get the ID or name of Private Cloud Gateway. | ||
|
||
To learn more about Private Cloud Gateways, review the [Private Cloud Gateway](https://docs.spectrocloud.com/clusters/pcg/) documentation. | ||
|
||
## Example Usage | ||
|
||
|
||
```hcl | ||
data "spectrocloud_private_cloud_gateway" "pcg" { | ||
name = "wst-1-pcg" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `id` (String) The ID of Private Cloud Gateway. | ||
- `name` (String) The Name of Private Cloud Gateway. | ||
- `name` (String) The name of Private Cloud Gateway. |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}" | ||
subcategory: "" | ||
description: |- | ||
{{ .Description | plainmarkdown | trimspace | prefixlines " " }} | ||
--- | ||
|
||
# {{.Name}} ({{.Type}}) | ||
|
||
{{ .Description | plainmarkdown | trimspace | prefixlines " " }} | ||
|
||
To learn more about Private Cloud Gateways, review the [Private Cloud Gateway](https://docs.spectrocloud.com/clusters/pcg/) documentation. | ||
|
||
## Example Usage | ||
|
||
|
||
```hcl | ||
data "spectrocloud_private_cloud_gateway" "pcg" { | ||
name = "wst-1-pcg" | ||
} | ||
|
||
``` | ||
|
||
{{ .SchemaMarkdown | trimspace }} |
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