@@ -242,7 +242,7 @@ func savedSearches() *schema.Resource {
242
242
"action_email_track_alert" : {
243
243
Type : schema .TypeBool ,
244
244
Optional : true ,
245
- Computed : true ,
245
+ Default : true ,
246
246
Description : "Indicates whether the execution of this action signifies a trackable alert." ,
247
247
},
248
248
"action_email_ttl" : {
@@ -269,7 +269,7 @@ func savedSearches() *schema.Resource {
269
269
"action_email_width_sort_columns" : {
270
270
Type : schema .TypeBool ,
271
271
Optional : true ,
272
- Computed : true ,
272
+ Default : true ,
273
273
Description : "Indicates whether columns should be sorted from least wide to most wide, left to right." +
274
274
"Only valid if format=text." ,
275
275
},
@@ -414,7 +414,7 @@ func savedSearches() *schema.Resource {
414
414
"action_script_track_alert" : {
415
415
Type : schema .TypeBool ,
416
416
Optional : true ,
417
- Computed : true ,
417
+ Default : true ,
418
418
Description : "Indicates whether the execution of this action signifies a trackable alert." ,
419
419
},
420
420
"action_script_ttl" : {
@@ -455,7 +455,7 @@ func savedSearches() *schema.Resource {
455
455
"action_summary_index_inline" : {
456
456
Type : schema .TypeBool ,
457
457
Optional : true ,
458
- Computed : true ,
458
+ Default : true ,
459
459
Description : "Determines whether to execute the summary indexing action as part of the scheduled search." +
460
460
"NOTE: This option is considered only if the summary index action is enabled and is always executed (in other words, if counttype = always).Defaults to true " ,
461
461
},
@@ -515,7 +515,7 @@ func savedSearches() *schema.Resource {
515
515
"alert_digest_mode" : {
516
516
Type : schema .TypeBool ,
517
517
Optional : true ,
518
- Computed : true ,
518
+ Default : true ,
519
519
Description : "Specifies whether alert actions are applied to the entire result set or on each individual result." +
520
520
"Defaults to 1 (true)." ,
521
521
},
@@ -766,7 +766,7 @@ func savedSearches() *schema.Resource {
766
766
"dispatch_lookups" : {
767
767
Type : schema .TypeBool ,
768
768
Optional : true ,
769
- Computed : true ,
769
+ Default : true ,
770
770
Description : "Enables or disables the lookups for this search. Defaults to 1. " ,
771
771
},
772
772
"dispatch_max_count" : {
@@ -804,7 +804,7 @@ func savedSearches() *schema.Resource {
804
804
"dispatch_spawn_process" : {
805
805
Type : schema .TypeBool ,
806
806
Optional : true ,
807
- Computed : true ,
807
+ Default : true ,
808
808
Description : "Specifies whether a new search process spawns when this saved search is executed. " +
809
809
"Defaults to 1. Searches against indexes must run in a separate process. " ,
810
810
},
@@ -856,7 +856,7 @@ func savedSearches() *schema.Resource {
856
856
"realtime_schedule" : {
857
857
Type : schema .TypeBool ,
858
858
Optional : true ,
859
- Computed : true ,
859
+ Default : true ,
860
860
Description : "Defaults to 1. Controls the way the scheduler computes the next execution time of a scheduled search. " +
861
861
"If this value is set to 1, the scheduler bases its determination of the next scheduled search execution time on the current time. " +
862
862
"If this value is set to 0, the scheduler bases its determination of the next scheduled search on the last search execution time. " +
@@ -879,7 +879,7 @@ func savedSearches() *schema.Resource {
879
879
"restart_on_searchpeer_add" : {
880
880
Type : schema .TypeBool ,
881
881
Optional : true ,
882
- Computed : true ,
882
+ Default : true ,
883
883
Description : "Specifies whether to restart a real-time search managed by the scheduler when a search peer becomes available for this saved search. " +
884
884
"Defaults to 1. " ,
885
885
},
0 commit comments