diff --git a/config/flipt.schema.cue b/config/flipt.schema.cue index 084cb67eb2..8e5be8dea6 100644 --- a/config/flipt.schema.cue +++ b/config/flipt.schema.cue @@ -9,6 +9,7 @@ import "strings" // Flipt application. @jsonschema(schema="http://json-schema.org/draft/2019-09/schema#") version?: "1.0" | *"1.0" + audit?: #audit authentication?: #authentication cache?: #cache cors?: #cors diff --git a/config/flipt.schema.json b/config/flipt.schema.json index ae3d337b8f..b23c33e189 100644 --- a/config/flipt.schema.json +++ b/config/flipt.schema.json @@ -11,6 +11,9 @@ "enum": ["1.0"], "default": "1.0" }, + "audit": { + "$ref": "#/definitions/audit" + }, "authentication": { "$ref": "#/definitions/authentication" },