Skip to content

Commit b3c6ce9

Browse files
jbudzmadirey
andauthored
rm index: false from binary mappings (#71343)
* rm index: false from binary mappings * test against unverified snapshot * two more * Mapping adjustments * Revert "Mapping adjustments" This reverts commit 52d68dc. * Revert "test against unverified snapshot" This reverts commit 4284ac3. Co-authored-by: Madison Caldwell <[email protected]>
1 parent 7282597 commit b3c6ce9

File tree

1 file changed

+5
-5
lines changed
  • x-pack/plugins/ingest_manager/server/saved_objects

1 file changed

+5
-5
lines changed

x-pack/plugins/ingest_manager/server/saved_objects/index.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const savedObjectTypes: { [key: string]: SavedObjectsType } = {
6767
last_checkin_status: { type: 'keyword' },
6868
config_revision: { type: 'integer' },
6969
default_api_key_id: { type: 'keyword' },
70-
default_api_key: { type: 'binary', index: false },
70+
default_api_key: { type: 'binary' },
7171
updated_at: { type: 'date' },
7272
current_error_events: { type: 'text', index: false },
7373
packages: { type: 'keyword' },
@@ -85,7 +85,7 @@ const savedObjectTypes: { [key: string]: SavedObjectsType } = {
8585
properties: {
8686
agent_id: { type: 'keyword' },
8787
type: { type: 'keyword' },
88-
data: { type: 'binary', index: false },
88+
data: { type: 'binary' },
8989
sent_at: { type: 'date' },
9090
created_at: { type: 'date' },
9191
},
@@ -146,7 +146,7 @@ const savedObjectTypes: { [key: string]: SavedObjectsType } = {
146146
properties: {
147147
name: { type: 'keyword' },
148148
type: { type: 'keyword' },
149-
api_key: { type: 'binary', index: false },
149+
api_key: { type: 'binary' },
150150
api_key_id: { type: 'keyword' },
151151
config_id: { type: 'keyword' },
152152
created_at: { type: 'date' },
@@ -170,8 +170,8 @@ const savedObjectTypes: { [key: string]: SavedObjectsType } = {
170170
is_default: { type: 'boolean' },
171171
hosts: { type: 'keyword' },
172172
ca_sha256: { type: 'keyword', index: false },
173-
fleet_enroll_username: { type: 'binary', index: false },
174-
fleet_enroll_password: { type: 'binary', index: false },
173+
fleet_enroll_username: { type: 'binary' },
174+
fleet_enroll_password: { type: 'binary' },
175175
config: { type: 'flattened' },
176176
},
177177
},

0 commit comments

Comments
 (0)