diff --git a/docs/core/integration-quality-scale/rules/docs-installation-parameters.md b/docs/core/integration-quality-scale/rules/docs-installation-parameters.md index c5511dba..2b243629 100644 --- a/docs/core/integration-quality-scale/rules/docs-installation-parameters.md +++ b/docs/core/integration-quality-scale/rules/docs-installation-parameters.md @@ -10,8 +10,21 @@ This should help the user to gather all the necessary information before startin ## Example implementation +In case an integration is used via a config flow: + ```markdown showLineNumbers {% configuration_basic %} +Host: + description: "The IP address of your bridge. You can find it in your router or in the Integration app under **Bridge Settings** > **Local API**." +Local access token: + description: "The local access token for your bridge. You can find it in the Integration app under **Bridge Settings** > **Local API**." +{% endconfiguration_basic %} +``` + +In case an integration is set up via YAML in the `configuration.yaml`: + +```markdown showLineNumbers +{% configuration %} Host: description: "The IP address of your bridge. You can find it in your router or in the Integration app under **Bridge Settings** -> **Local API**." required: false @@ -20,9 +33,9 @@ Local access token: description: "The local access token for your bridge. You can find it in the Integration app under **Bridge Settings** -> **Local API**." required: false type: string -{% endconfiguration_basic %} +{% endconfiguration %} ``` ## Exceptions -There are no exceptions to this rule. \ No newline at end of file +There are no exceptions to this rule.