-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
36 changed files
with
720 additions
and
293 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "bluechip_role Data Source - terraform-provider-bluechip" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# bluechip_role (Data Source) | ||
|
||
|
||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "bluechip_role" "current" { | ||
metadata { | ||
name = "my-test" | ||
} | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `metadata` (Block List) (see [below for nested schema](#nestedblock--metadata)) | ||
- `timeouts` (Block, Optional) (see [below for nested schema](#nestedblock--timeouts)) | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. | ||
- `spec` (List of Object) (see [below for nested schema](#nestedatt--spec)) | ||
|
||
<a id="nestedblock--metadata"></a> | ||
### Nested Schema for `metadata` | ||
|
||
Required: | ||
|
||
- `name` (String) Name is the name of the resource. | ||
|
||
Optional: | ||
|
||
- `annotations` (Map of String) Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. | ||
- `labels` (Map of String) Labels are key value pairs that may be used to scope and select individual resources. They are not queryable and should be preserved when modifying objects. | ||
|
||
Read-Only: | ||
|
||
- `creation_timestamp` (String) CreationTimestamp is a timestamp representing the server time when this object was created. | ||
- `update_timestamp` (String) UpdateTimestamp is a timestamp representing the server time when this object was last updated. | ||
|
||
|
||
<a id="nestedblock--timeouts"></a> | ||
### Nested Schema for `timeouts` | ||
|
||
Optional: | ||
|
||
- `default` (String) | ||
|
||
|
||
<a id="nestedatt--spec"></a> | ||
### Nested Schema for `spec` | ||
|
||
Read-Only: | ||
|
||
- `statements` (List of Object) (see [below for nested schema](#nestedobjatt--spec--statements)) | ||
|
||
<a id="nestedobjatt--spec--statements"></a> | ||
### Nested Schema for `spec.statements` | ||
|
||
Read-Only: | ||
|
||
- `actions` (Set of String) | ||
- `paths` (Set of String) | ||
- `resources` (List of Object) (see [below for nested schema](#nestedobjatt--spec--statements--resources)) | ||
|
||
<a id="nestedobjatt--spec--statements--resources"></a> | ||
### Nested Schema for `spec.statements.resources` | ||
|
||
Read-Only: | ||
|
||
- `api_group` (String) | ||
- `kind` (String) |
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,93 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "bluechip_roles Data Source - terraform-provider-bluechip" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# bluechip_roles (Data Source) | ||
|
||
|
||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "bluechip_roles" "current" { | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `filter` (Block List) Filter is a list of query terms to filter the results by. (see [below for nested schema](#nestedblock--filter)) | ||
- `timeouts` (Block, Optional) (see [below for nested schema](#nestedblock--timeouts)) | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. | ||
- `items` (List of Object) Filter is a list of query terms to filter the results by. (see [below for nested schema](#nestedatt--items)) | ||
|
||
<a id="nestedblock--filter"></a> | ||
### Nested Schema for `filter` | ||
|
||
Required: | ||
|
||
- `field` (String) Field to use for the query term. | ||
- `operator` (String) Operator to use for the query term. One of ['equals', 'notEquals', 'fuzzy', 'wildcard', 'regex', 'matchPhrase', 'prefix']. | ||
- `value` (String) Value to use for the query term. | ||
|
||
|
||
<a id="nestedblock--timeouts"></a> | ||
### Nested Schema for `timeouts` | ||
|
||
Optional: | ||
|
||
- `default` (String) | ||
|
||
|
||
<a id="nestedatt--items"></a> | ||
### Nested Schema for `items` | ||
|
||
Read-Only: | ||
|
||
- `metadata` (List of Object) (see [below for nested schema](#nestedobjatt--items--metadata)) | ||
- `spec` (List of Object) (see [below for nested schema](#nestedobjatt--items--spec)) | ||
|
||
<a id="nestedobjatt--items--metadata"></a> | ||
### Nested Schema for `items.metadata` | ||
|
||
Read-Only: | ||
|
||
- `annotations` (Map of String) | ||
- `creation_timestamp` (String) | ||
- `labels` (Map of String) | ||
- `name` (String) | ||
- `update_timestamp` (String) | ||
|
||
|
||
<a id="nestedobjatt--items--spec"></a> | ||
### Nested Schema for `items.spec` | ||
|
||
Read-Only: | ||
|
||
- `statements` (List of Object) (see [below for nested schema](#nestedobjatt--items--spec--statements)) | ||
|
||
<a id="nestedobjatt--items--spec--statements"></a> | ||
### Nested Schema for `items.spec.statements` | ||
|
||
Read-Only: | ||
|
||
- `actions` (Set of String) | ||
- `paths` (Set of String) | ||
- `resources` (List of Object) (see [below for nested schema](#nestedobjatt--items--spec--statements--resources)) | ||
|
||
<a id="nestedobjatt--items--spec--statements--resources"></a> | ||
### Nested Schema for `items.spec.statements.resources` | ||
|
||
Read-Only: | ||
|
||
- `api_group` (String) | ||
- `kind` (String) |
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.