diff --git a/source/_docs/blueprint/selectors.markdown b/source/_docs/blueprint/selectors.markdown index 47581ccb39b..cb74835d272 100644 --- a/source/_docs/blueprint/selectors.markdown +++ b/source/_docs/blueprint/selectors.markdown @@ -21,6 +21,7 @@ The following selectors are currently available: - [Attribute selector](#attribute-selector) - [Boolean selector](#boolean-selector) - [Color temperature selector](#color-temperature-selector) +- [Config entry selector](#config-entry-selector) - [Date selector](#date-selector) - [Date & time selector](#date--time-selector) - [Device selector](#device-selector) @@ -280,6 +281,27 @@ max_mireds: The output of this selector is the number of mired selected, for example, `243`. +## Config entry selector + +The config entry selector allows to user to select a configured integration +configuration entry. The selector returns the entry ID of the selected +integration configuration entry. + +![Screenshot of the Configuration entry selector](/images/blueprints/selector-config-entry.png) + +```yaml +config_entry: +``` + +{% configuration config_entry %} +integration: + description: Limits the list of selectable configuration entries to a single integration domain. + type: string + required: false +{% endconfiguration %} + +The output of this selector is the entry ID of the config entry, for example, `6b68b250388cbe0d620c92dd3acc93ec`. + ## Date selector The date selector shows a date input that allows the user to specify a date. diff --git a/source/images/blueprints/selector-config-entry.png b/source/images/blueprints/selector-config-entry.png new file mode 100644 index 00000000000..95840e0774e Binary files /dev/null and b/source/images/blueprints/selector-config-entry.png differ