Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/resources/kibana_action_connector.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ resource "elasticstack_kibana_action_connector" "slack-api-connector" {

- `config` (String) The configuration for the connector. Configuration properties vary depending on the connector type.
- `connector_id` (String) A UUID v1 or v4 to use instead of a randomly generated ID.
- `secrets` (String) The secrets configuration for the connector. Secrets configuration properties vary depending on the connector type.
- `secrets` (String, Sensitive) The secrets configuration for the connector. Secrets configuration properties vary depending on the connector type.
- `space_id` (String) An identifier for the space. If space_id is not provided, the default space is used.

### Read-Only
Expand Down
1 change: 1 addition & 0 deletions internal/kibana/connector.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ func ResourceActionConnector() *schema.Resource {
Optional: true,
DiffSuppressFunc: utils.DiffJsonSuppress,
ValidateFunc: validation.StringIsJSON,
Sensitive: true,
},
"is_deprecated": {
Description: "Indicates whether the connector type is deprecated.",
Expand Down
Loading