Skip to content

Commit b6f4fe9

Browse files
committed
regen docs
1 parent 23944b9 commit b6f4fe9

File tree

2 files changed

+12
-16
lines changed

2 files changed

+12
-16
lines changed

docs/data-sources/kibana_action_connector

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,12 @@ Use this data source to get information about an existing action connector.
1616
provider "elasticstack" {
1717
elasticsearch {}
1818
kibana {}
19-
2019
}
2120

2221
data "elasticstack_kibana_action_connector" "example" {
23-
name = "myslackconnector"
24-
space_id = "default"
25-
connector_type = ".slack"
22+
name = "myslackconnector"
23+
space_id = "default"
24+
connector_type_id = ".slack"
2625
}
2726

2827
output "connector_id" {
@@ -35,19 +34,18 @@ output "connector_id" {
3534

3635
### Required
3736

38-
- `connector_type_id` (String) The ID of the connector type, e.g. `.index`.
3937
- `name` (String) The name of the connector. While this name does not have to be unique, a distinctive name can help you identify a connector.
4038

4139
### Optional
4240

43-
- `config` (String) The configuration for the connector. Configuration properties vary depending on the connector type.
44-
- `connector_id` (String) A UUID v1 or v4 to use instead of a randomly generated ID.
41+
- `connector_type_id` (String) The ID of the connector type, e.g. `.index`.
4542
- `id` (String) The ID of this resource.
46-
- `secrets` (String) The secrets configuration for the connector. Secrets configuration properties vary depending on the connector type.
4743
- `space_id` (String) An identifier for the space. If space_id is not provided, the default space is used.
4844

4945
### Read-Only
5046

47+
- `config` (String) The configuration for the connector. Configuration properties vary depending on the connector type.
48+
- `connector_id` (String) A UUID v1 or v4 randomly generated ID.
5149
- `is_deprecated` (Boolean) Indicates whether the connector type is deprecated.
5250
- `is_missing_secrets` (Boolean) Indicates whether secrets are missing for the connector.
5351
- `is_preconfigured` (Boolean) Indicates whether it is a preconfigured connector.

docs/data-sources/kibana_action_connector.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,12 @@ Search for a connector by name, space id, and type. Note, that this data source
1616
provider "elasticstack" {
1717
elasticsearch {}
1818
kibana {}
19-
2019
}
2120
2221
data "elasticstack_kibana_action_connector" "example" {
23-
name = "myslackconnector"
24-
space_id = "default"
25-
connector_type = ".slack"
22+
name = "myslackconnector"
23+
space_id = "default"
24+
connector_type_id = ".slack"
2625
}
2726
2827
output "connector_id" {
@@ -35,18 +34,17 @@ output "connector_id" {
3534

3635
### Required
3736

38-
- `connector_type_id` (String) The ID of the connector type, e.g. `.index`.
3937
- `name` (String) The name of the connector. While this name does not have to be unique, a distinctive name can help you identify a connector.
4038

4139
### Optional
4240

43-
- `config` (String) The configuration for the connector. Configuration properties vary depending on the connector type.
44-
- `connector_id` (String) A UUID v1 or v4 to use instead of a randomly generated ID.
45-
- `secrets` (String) The secrets configuration for the connector. Secrets configuration properties vary depending on the connector type.
41+
- `connector_type_id` (String) The ID of the connector type, e.g. `.index`.
4642
- `space_id` (String) An identifier for the space. If space_id is not provided, the default space is used.
4743

4844
### Read-Only
4945

46+
- `config` (String) The configuration for the connector. Configuration properties vary depending on the connector type.
47+
- `connector_id` (String) A UUID v1 or v4 randomly generated ID.
5048
- `id` (String) The ID of this resource.
5149
- `is_deprecated` (Boolean) Indicates whether the connector type is deprecated.
5250
- `is_missing_secrets` (Boolean) Indicates whether secrets are missing for the connector.

0 commit comments

Comments
 (0)