-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs: DOC-976 * docs: DOC-977 * docs: DOC-978
- Loading branch information
1 parent
7d754b8
commit 5d29b0a
Showing
9 changed files
with
170 additions
and
22 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,25 +1,38 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "spectrocloud_cloudaccount_aws Data Source - terraform-provider-spectrocloud" | ||
subcategory: "" | ||
description: |- | ||
A data source for retrieving information about an AWS cloud account registered in Palette. | ||
--- | ||
|
||
# spectrocloud_cloudaccount_aws (Data Source) | ||
|
||
A data source for retrieving information about an AWS cloud account registered in Palette. | ||
|
||
## Example Usage | ||
|
||
|
||
You can retrieve the details of an AWS cloud registered in Palette by specifying the ID of the cloud account. | ||
|
||
```hcl | ||
data "spectrocloud_cloudaccount_aws" "aws_account" { | ||
id = "45bddf48b8fc3ea6c1774886" | ||
} | ||
``` | ||
|
||
Alternatively, you specify the ID of the cloud account to retrieve the details of the AWS cloud. | ||
|
||
```hcl | ||
data "spectrocloud_cloudaccount_aws" "aws_account" { | ||
name = "primary-aws-account" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `depends` (String) | ||
- `name` (String) | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. | ||
- `id` (String) ID of the AWS cloud account registered in Palette. | ||
- `name` (String) Name of the AWS cloud account registered in Palette. |
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,28 +1,44 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "spectrocloud_cloudaccount_azure Data Source - terraform-provider-spectrocloud" | ||
subcategory: "" | ||
description: |- | ||
A data source for retrieving information about an Azure cloud account registered in Palette. | ||
--- | ||
|
||
# spectrocloud_cloudaccount_azure (Data Source) | ||
|
||
A data source for retrieving information about an Azure cloud account registered in Palette. | ||
|
||
## Example Usage | ||
|
||
|
||
You can retrieve the details of an Azure cloud registered in Palette by specifying the ID of the cloud account. | ||
|
||
```hcl | ||
data "spectrocloud_cloudaccount_azure" "azure_account" { | ||
id = "45bddf48b8fc3ea6c1774886" | ||
} | ||
``` | ||
|
||
Alternatively, you specify the ID of the cloud account to retrieve the details of the Azure cloud account. | ||
|
||
```hcl | ||
data "spectrocloud_cloudaccount_azure" "azure_account" { | ||
name = "primary-azure-account" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `name` (String) | ||
- `id` (String) ID of the Azure cloud account registered in Palette. | ||
- `name` (String) Name of the Azure cloud account registered in Palette. | ||
|
||
### Read-Only | ||
|
||
- `azure_client_id` (String) | ||
- `azure_tenant_id` (String) | ||
- `disable_properties_request` (Boolean) | ||
- `id` (String) The ID of this resource. | ||
- `tenant_name` (String) | ||
- `azure_client_id` (String) The unique client ID from Azure Management Portal. | ||
- `azure_tenant_id` (String) The tenant ID of the Azure cloud account registered in Palette. | ||
- `disable_properties_request` (Boolean) The status of the disable properties option. | ||
- `tenant_name` (String) The name of the Azure tenant. |
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,24 +1,37 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "spectrocloud_cloudaccount_gcp Data Source - terraform-provider-spectrocloud" | ||
subcategory: "" | ||
description: |- | ||
A data source for retrieving information about a GCP cloud account registered in Palette. | ||
--- | ||
|
||
# spectrocloud_cloudaccount_gcp (Data Source) | ||
|
||
A data source for retrieving information about a GCP cloud account registered in Palette. | ||
|
||
## Example Usage | ||
|
||
|
||
You can retrieve the details of a GCP cloud registered in Palette by specifying the ID of the cloud account. | ||
|
||
```hcl | ||
data "spectrocloud_cloudaccount_gcp" "gcp_account" { | ||
id = "45bddf48b8fc3ea6c1774886" | ||
} | ||
``` | ||
|
||
Alternatively, you specify the ID of the cloud account to retrieve the details of the GCP cloud account. | ||
|
||
```hcl | ||
data "spectrocloud_cloudaccount_gcp" "gcp_account" { | ||
name = "primary-gcp-account" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `name` (String) | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. | ||
- `id` (String) ID of the GCP cloud account registered in Palette. | ||
- `name` (String) Name of the GCP cloud account registered in Palette. |
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,31 @@ | ||
--- | ||
page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}" | ||
subcategory: "" | ||
description: |- | ||
{{ .Description | plainmarkdown | trimspace | prefixlines " " }} | ||
--- | ||
|
||
# {{.Name}} ({{.Type}}) | ||
|
||
{{ .Description | plainmarkdown | trimspace | prefixlines " " }} | ||
|
||
## Example Usage | ||
|
||
|
||
You can retrieve the details of an AWS cloud registered in Palette by specifying the ID of the cloud account. | ||
|
||
```hcl | ||
data "spectrocloud_cloudaccount_aws" "aws_account" { | ||
id = "45bddf48b8fc3ea6c1774886" | ||
} | ||
``` | ||
|
||
Alternatively, you specify the ID of the cloud account to retrieve the details of the AWS cloud. | ||
|
||
```hcl | ||
data "spectrocloud_cloudaccount_aws" "aws_account" { | ||
name = "primary-aws-account" | ||
} | ||
``` | ||
|
||
{{ .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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}" | ||
subcategory: "" | ||
description: |- | ||
{{ .Description | plainmarkdown | trimspace | prefixlines " " }} | ||
--- | ||
|
||
# {{.Name}} ({{.Type}}) | ||
|
||
{{ .Description | plainmarkdown | trimspace | prefixlines " " }} | ||
|
||
## Example Usage | ||
|
||
|
||
You can retrieve the details of an Azure cloud registered in Palette by specifying the ID of the cloud account. | ||
|
||
```hcl | ||
data "spectrocloud_cloudaccount_azure" "azure_account" { | ||
id = "45bddf48b8fc3ea6c1774886" | ||
} | ||
``` | ||
|
||
Alternatively, you specify the ID of the cloud account to retrieve the details of the Azure cloud account. | ||
|
||
```hcl | ||
data "spectrocloud_cloudaccount_azure" "azure_account" { | ||
name = "primary-azure-account" | ||
} | ||
``` | ||
|
||
{{ .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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}" | ||
subcategory: "" | ||
description: |- | ||
{{ .Description | plainmarkdown | trimspace | prefixlines " " }} | ||
--- | ||
|
||
# {{.Name}} ({{.Type}}) | ||
|
||
{{ .Description | plainmarkdown | trimspace | prefixlines " " }} | ||
|
||
## Example Usage | ||
|
||
|
||
You can retrieve the details of a GCP cloud registered in Palette by specifying the ID of the cloud account. | ||
|
||
```hcl | ||
data "spectrocloud_cloudaccount_gcp" "gcp_account" { | ||
id = "45bddf48b8fc3ea6c1774886" | ||
} | ||
``` | ||
|
||
Alternatively, you specify the ID of the cloud account to retrieve the details of the GCP cloud account. | ||
|
||
```hcl | ||
data "spectrocloud_cloudaccount_gcp" "gcp_account" { | ||
name = "primary-gcp-account" | ||
} | ||
``` | ||
|
||
{{ .SchemaMarkdown | trimspace }} |