-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ce30cea
commit b0bfc0e
Showing
102 changed files
with
4,925 additions
and
676 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
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,39 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "citrix_cloud_google_identity_provider Data Source - citrix" | ||
subcategory: "Citrix Cloud" | ||
description: |- | ||
Data Source of a Citrix Cloud Google Cloud Identity Provider instance. Note that this feature is in Tech Preview. | ||
--- | ||
|
||
# citrix_cloud_google_identity_provider (Data Source) | ||
|
||
Data Source of a Citrix Cloud Google Cloud Identity Provider instance. Note that this feature is in Tech Preview. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
# Get Citrix Cloud Google Identity Provider data source by ID | ||
data "citrix_cloud_google_identity_provider" "example_google_identity_provider" { | ||
id = "00000000-0000-0000-0000-000000000000" | ||
} | ||
# Get Citrix Cloud Google Identity Provider data source by name | ||
data "citrix_cloud_google_identity_provider" "example_google_identity_provider" { | ||
name = "exampleGoogleIdentityProvider" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `id` (String) ID of the Citrix Cloud Google Cloud Identity Provider instance. | ||
- `name` (String) Name of the Citrix Cloud Google Cloud Identity Provider instance. | ||
|
||
### Read-Only | ||
|
||
- `auth_domain_name` (String) User authentication domain name for Google Cloud Identity Provider. | ||
- `google_customer_id` (String) Customer ID of the configured Google Cloud Identity Provider. | ||
- `google_domain` (String) Domain of the configured Google Cloud Identity Provider. |
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,43 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "citrix_tag Data Source - citrix" | ||
subcategory: "CVAD" | ||
description: |- | ||
Data source of a tag. | ||
--- | ||
|
||
# citrix_tag (Data Source) | ||
|
||
Data source of a tag. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
# Get Tag detail by name | ||
data "citrix_tag" "example_tag_by_name" { | ||
name = "exampleTag" | ||
} | ||
# Get Tag detail by id | ||
data "citrix_tag" "example_tag_by_id" { | ||
id = "00000000-0000-0000-0000-000000000000" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `id` (String) GUID identifier of the tag. | ||
- `name` (String) Name of the tag. | ||
|
||
### Read-Only | ||
|
||
- `associated_application_count` (Number) Number of applications associated with the tag. | ||
- `associated_application_group_count` (Number) Number of application groups associated with the tag. | ||
- `associated_delivery_group_count` (Number) Number of delivery groups associated with the tag. | ||
- `associated_machine_catalog_count` (Number) Number of machine catalogs associated with the tag. | ||
- `associated_machine_count` (Number) Number of machines associated with the tag. | ||
- `description` (String) Description of the tag. | ||
- `scopes` (Set of String) |
Oops, something went wrong.