mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[Automatic Import] Add missing fields to input manifest templates (#208768)
## Summary Adds missing fields to input manifest templates.
This commit is contained in:
parent
a2e7b50c24
commit
4513183800
2 changed files with 86 additions and 2 deletions
|
@ -63,7 +63,7 @@
|
|||
show_user: false
|
||||
default: 1m
|
||||
description: This config parameter sets how often Filebeat checks for new log events from the specified log group.
|
||||
- name: api_timeput
|
||||
- name: api_timeout
|
||||
type: text
|
||||
title: API Timeout
|
||||
multi: false
|
||||
|
@ -91,4 +91,66 @@
|
|||
title: Number of workers
|
||||
required: false
|
||||
show_user: false
|
||||
description: The number of workers assigned to reading from log groups. Each worker will read log events from one of the log groups matching `log_group_name_prefix`. For example, if `log_group_name_prefix` matches five log groups, then `number_of_workers` should be set to `5`. The default value is `1`.
|
||||
description: >-
|
||||
The number of workers assigned to reading from log groups. Each worker will read log events from one of the log groups matching `log_group_name_prefix`. For example, if `log_group_name_prefix` matches five log groups, then `number_of_workers` should be set to `5`. The default value is `1`.
|
||||
- name: credential_profile_name
|
||||
type: text
|
||||
title: Credential Profile Name
|
||||
multi: false
|
||||
required: false
|
||||
show_user: false
|
||||
- name: shared_credential_file
|
||||
type: text
|
||||
title: Shared Credential File
|
||||
multi: false
|
||||
required: false
|
||||
show_user: false
|
||||
description: Directory of the shared credentials file
|
||||
- name: default_region
|
||||
type: text
|
||||
title: Default AWS Region
|
||||
multi: false
|
||||
required: false
|
||||
show_user: false
|
||||
default: ""
|
||||
description: >-
|
||||
Default region to use prior to connecting to region specific services/endpoints if no AWS region is set from environment variable, credentials or instance profile. If none of the above are set and no default region is set as well, `us-east-1` is used. A region, either from environment variable, credentials or instance profile or from this default region setting, needs to be set when using regions in non-regular AWS environments such as AWS China or US Government Isolated.
|
||||
- name: access_key_id
|
||||
type: password
|
||||
title: Access Key ID
|
||||
multi: false
|
||||
required: false
|
||||
show_user: true
|
||||
description: First part of access key.
|
||||
secret: true
|
||||
- name: secret_access_key
|
||||
type: password
|
||||
title: Secret Access Key
|
||||
multi: false
|
||||
required: false
|
||||
show_user: true
|
||||
description: Second part of access key.
|
||||
secret: true
|
||||
- name: session_token
|
||||
type: password
|
||||
title: Session Token
|
||||
multi: false
|
||||
required: false
|
||||
show_user: true
|
||||
description: Required when using temporary security credentials.
|
||||
secret: true
|
||||
- name: role_arn
|
||||
type: text
|
||||
title: Role ARN
|
||||
multi: false
|
||||
required: false
|
||||
show_user: false
|
||||
description: AWS IAM Role to assume.
|
||||
- name: proxy_url
|
||||
type: text
|
||||
title: Proxy URL
|
||||
multi: false
|
||||
required: false
|
||||
show_user: false
|
||||
description: >-
|
||||
URL to proxy connections in the form of http[s]://<user>:<password>@<server name/ip>:<port>. Please ensure your username and password are in URL encoded format.
|
||||
|
|
|
@ -5,6 +5,28 @@
|
|||
description: |
|
||||
{{ data_stream_description }}
|
||||
vars:
|
||||
- name: account_name
|
||||
type: text
|
||||
title: Account Name
|
||||
description: |
|
||||
This attribute is required for various internal operations with respect to authentication, creating service clients and blob clients which are used internally for various processing purposes.
|
||||
required: true
|
||||
show_user: true
|
||||
- name: service_account_key
|
||||
type: password
|
||||
title: Service Account Key
|
||||
description: |
|
||||
This attribute contains the access key, found under the Access keys section on Azure Cloud, under the respective storage account. A single storage account can contain multiple containers, and they will all use this common access key.
|
||||
required: false
|
||||
show_user: true
|
||||
secret: true
|
||||
- name: service_account_uri
|
||||
type: text
|
||||
title: Service Account URI
|
||||
description: |
|
||||
This attribute contains the connection string, found under the Access keys section on Azure Cloud, under the respective storage account. A single storage account can contain multiple containers, and they will all use this common connection string.
|
||||
required: false
|
||||
show_user: false
|
||||
- name: storage_url
|
||||
type: text
|
||||
title: Storage URL
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue