Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 5 additions & 0 deletions spec/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
- description: Add support for semantic_text field definition.
type: enhancement
link: https://github.com/elastic/package-spec/pull/807
- version: 3.4.1-next
changes:
- description: Add fips_compatible boolean flag for input package policy templates.
type: enhancement
link: https://github.com/elastic/package-spec/pull/914
- version: 3.4.0
changes:
- description: Add kibana/security_ai_prompt to support security AI prompt assets.
Expand Down
2 changes: 2 additions & 0 deletions spec/input/manifest.spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ spec:
$ref: "../integration/manifest.spec.yml#/definitions/deployment_modes"
configuration_links:
$ref: "../integration/manifest.spec.yml#/definitions/configuration_links"
fips_compatible:
$ref: "../integration/manifest.spec.yml#/definitions/fips_compatible"
icons:
$ref: "../integration/manifest.spec.yml#/definitions/icons"
screenshots:
Expand Down
10 changes: 6 additions & 4 deletions spec/integration/manifest.spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,10 @@ spec:
- title
- url
- type
fips_compatible:
type: boolean
description: Indicate if this package is capable of satisfying FIPS requirements. Set to false if it uses any input that cannot be configured to use FIPS cryptography.
default: true
icons:
description: List of icons for by this package.
type: array
Expand Down Expand Up @@ -481,6 +485,8 @@ spec:
$ref: "#/definitions/deployment_modes"
configuration_links:
$ref: "#/definitions/configuration_links"
fips_compatible:
$ref: "#/definitions/fips_compatible"
inputs:
description: List of inputs supported by policy template.
type: array
Expand Down Expand Up @@ -532,10 +538,6 @@ spec:
$ref: "#/definitions/screenshots"
vars:
$ref: "./data_stream/manifest.spec.yml#/definitions/vars"
fips_compatible:
type: boolean
description: Indicate if this package is capable of satisfying FIPS requirements. Set to false if it uses any input that cannot be configured to use FIPS cryptography.
default: true
required:
- name
- title
Expand Down
1 change: 1 addition & 0 deletions test/packages/good_input/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ policy_templates:
description: Query the database to capture metrics.
input: sql
template_path: input.yml.hbs
fips_compatible: false
vars:
- name: hosts
type: text
Expand Down
1 change: 1 addition & 0 deletions test/packages/good_v3/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ policy_templates:
requests:
memory: 1024M
cpu: "0.5"
fips_compatible: false
configuration_links:
- title: View Agents
url: "kbn:/app/fleet/agents"
Expand Down