Skip to content

Commit

Permalink
Update docs for v1.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
pubg-devops-cicd-bot committed Oct 17, 2024
1 parent de3c670 commit 57df1dd
Show file tree
Hide file tree
Showing 45 changed files with 583 additions and 23 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
## Changelog
* 0d8e089 fix: [PUBG-214031] make name and namespace to forceNew
* 6de5425 feat: Add exec auth method and bluechip_oidc_credentials datasource (!4)
* 56d729a feat: Bump arcane-client-go and add detail error message
1 change: 1 addition & 0 deletions docs/data-sources/account.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ Optional:
Read-Only:

- `creation_timestamp` (String) CreationTimestamp is a timestamp representing the server time when this object was created.
- `resource_version` (String) ResourceVersion is an opaque value that changes on every update to a resource.
- `update_timestamp` (String) UpdateTimestamp is a timestamp representing the server time when this object was last updated.


Expand Down
1 change: 1 addition & 0 deletions docs/data-sources/accounts.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ Read-Only:
- `labels` (Map of String)
- `name` (String)
- `namespace` (String)
- `resource_version` (String)
- `update_timestamp` (String)


Expand Down
1 change: 1 addition & 0 deletions docs/data-sources/cidr.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ Optional:
Read-Only:

- `creation_timestamp` (String) CreationTimestamp is a timestamp representing the server time when this object was created.
- `resource_version` (String) ResourceVersion is an opaque value that changes on every update to a resource.
- `update_timestamp` (String) UpdateTimestamp is a timestamp representing the server time when this object was last updated.


Expand Down
1 change: 1 addition & 0 deletions docs/data-sources/cidrs.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ Read-Only:
- `labels` (Map of String)
- `name` (String)
- `namespace` (String)
- `resource_version` (String)
- `update_timestamp` (String)


Expand Down
1 change: 1 addition & 0 deletions docs/data-sources/cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ Optional:
Read-Only:

- `creation_timestamp` (String) CreationTimestamp is a timestamp representing the server time when this object was created.
- `resource_version` (String) ResourceVersion is an opaque value that changes on every update to a resource.
- `update_timestamp` (String) UpdateTimestamp is a timestamp representing the server time when this object was last updated.


Expand Down
1 change: 1 addition & 0 deletions docs/data-sources/clusterrolebinding.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ Optional:
Read-Only:

- `creation_timestamp` (String) CreationTimestamp is a timestamp representing the server time when this object was created.
- `resource_version` (String) ResourceVersion is an opaque value that changes on every update to a resource.
- `update_timestamp` (String) UpdateTimestamp is a timestamp representing the server time when this object was last updated.


Expand Down
1 change: 1 addition & 0 deletions docs/data-sources/clusterrolebindings.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ Read-Only:
- `creation_timestamp` (String)
- `labels` (Map of String)
- `name` (String)
- `resource_version` (String)
- `update_timestamp` (String)


Expand Down
1 change: 1 addition & 0 deletions docs/data-sources/clusters.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ Read-Only:
- `labels` (Map of String)
- `name` (String)
- `namespace` (String)
- `resource_version` (String)
- `update_timestamp` (String)


Expand Down
73 changes: 73 additions & 0 deletions docs/data-sources/entragroup.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "bluechip_entragroup Data Source - terraform-provider-bluechip"
subcategory: ""
description: |-
---

# bluechip_entragroup (Data Source)



## Example Usage

```terraform
data "bluechip_entragroup" "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.
- `resource_version` (String) ResourceVersion is an opaque value that changes on every update to a resource.
- `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:

- `description` (String)
- `display_name` (String)
- `mail` (String)
- `mail_nickname` (String)
- `on_premises_sam_account_name` (String)
- `security_enabled` (Boolean)
82 changes: 82 additions & 0 deletions docs/data-sources/entragroups.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "bluechip_entragroups Data Source - terraform-provider-bluechip"
subcategory: ""
description: |-
---

# bluechip_entragroups (Data Source)



## Example Usage

```terraform
data "bluechip_entragroups" "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)
- `resource_version` (String)
- `update_timestamp` (String)


<a id="nestedobjatt--items--spec"></a>
### Nested Schema for `items.spec`

Read-Only:

- `description` (String)
- `display_name` (String)
- `mail` (String)
- `mail_nickname` (String)
- `on_premises_sam_account_name` (String)
- `security_enabled` (Boolean)
73 changes: 73 additions & 0 deletions docs/data-sources/entrauser.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "bluechip_entrauser Data Source - terraform-provider-bluechip"
subcategory: ""
description: |-
---

# bluechip_entrauser (Data Source)



## Example Usage

```terraform
data "bluechip_entrauser" "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.
- `resource_version` (String) ResourceVersion is an opaque value that changes on every update to a resource.
- `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:

- `display_name` (String)
- `given_name` (String)
- `mail` (String)
- `surname` (String)
- `user_principal_name` (String)
- `user_type` (String)
82 changes: 82 additions & 0 deletions docs/data-sources/entrausers.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "bluechip_entrausers Data Source - terraform-provider-bluechip"
subcategory: ""
description: |-
---

# bluechip_entrausers (Data Source)



## Example Usage

```terraform
data "bluechip_entrausers" "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)
- `resource_version` (String)
- `update_timestamp` (String)


<a id="nestedobjatt--items--spec"></a>
### Nested Schema for `items.spec`

Read-Only:

- `display_name` (String)
- `given_name` (String)
- `mail` (String)
- `surname` (String)
- `user_principal_name` (String)
- `user_type` (String)
1 change: 1 addition & 0 deletions docs/data-sources/image.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ Optional:
Read-Only:

- `creation_timestamp` (String) CreationTimestamp is a timestamp representing the server time when this object was created.
- `resource_version` (String) ResourceVersion is an opaque value that changes on every update to a resource.
- `update_timestamp` (String) UpdateTimestamp is a timestamp representing the server time when this object was last updated.


Expand Down
1 change: 1 addition & 0 deletions docs/data-sources/images.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ Read-Only:
- `labels` (Map of String)
- `name` (String)
- `namespace` (String)
- `resource_version` (String)
- `update_timestamp` (String)


Expand Down
Loading

0 comments on commit 57df1dd

Please sign in to comment.