diff --git a/docs/features/software-templates/inputs-examples.md b/docs/features/software-templates/input-examples.md similarity index 86% rename from docs/features/software-templates/inputs-examples.md rename to docs/features/software-templates/input-examples.md index 3e39c21d63..68a6fefc0e 100644 --- a/docs/features/software-templates/inputs-examples.md +++ b/docs/features/software-templates/input-examples.md @@ -77,18 +77,23 @@ parameters: title: Volume Type type: string description: The volume type to be used. - enum: ['gp2', 'gp3', 'io1', 'io2', 'sc1', 'st1', 'standard'] default: 'gp2' + enum: + - 'gp2' + - 'gp3' + - 'io1' + - 'io2' + - 'sc1' + - 'st1' + - 'standard' enumNames: - [ - 'General Purpose SSD (gp2)', - 'General Purpose SSD (gp3)', - 'Provisioned IOPS (io1)', - 'Provisioned IOPS (io2)', - 'Cold HDD (sc1)', - 'Throughput Optimized HDD (st1)', - 'Magnetic (standard)', - ] + - 'General Purpose SSD (gp2)' + - 'General Purpose SSD (gp3)' + - 'Provisioned IOPS (io1)' + - 'Provisioned IOPS (io2)' + - 'Cold HDD (sc1)' + - 'Throughput Optimized HDD (st1)' + - 'Magnetic (standard)' ``` ### A multiple choices list @@ -102,7 +107,10 @@ parameters: type: array items: type: string - enum: ['production', 'staging', 'development'] + enum: + - 'production' + - 'staging' + - 'development' uniqueItems: true ui:widget: checkboxes ``` @@ -176,7 +184,10 @@ parameters: type: array items: type: boolean - enum: ['Enable scraping', 'Enable HPA', 'Enable cache'] + enum: + - 'Enable scraping' + - 'Enable HPA' + - 'Enable cache' uniqueItems: true ui:widget: checkboxes ``` diff --git a/mkdocs.yml b/mkdocs.yml index d7f303649c..06906fe3f0 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -61,7 +61,7 @@ nav: - Overview: 'features/software-templates/index.md' - Configuration: 'features/software-templates/configuration.md' - Adding your own Templates: 'features/software-templates/adding-templates.md' - - Inputs examples: 'features/software-templates/inputs-examples.md' + - Input examples: 'features/software-templates/inputs-examples.md' - Writing Templates: 'features/software-templates/writing-templates.md' - Builtin Actions: 'features/software-templates/builtin-actions.md' - Writing Custom Actions: 'features/software-templates/writing-custom-actions.md'