File tree Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -100,27 +100,22 @@ func resourceMongoDBAtlasProject() *schema.Resource {
100100 "is_collect_database_specifics_statistics_enabled" : {
101101 Type : schema .TypeBool ,
102102 Optional : true ,
103- Default : false ,
104103 },
105104 "is_data_explorer_enabled" : {
106105 Type : schema .TypeBool ,
107106 Optional : true ,
108- Default : false ,
109107 },
110108 "is_performance_advisor_enabled" : {
111109 Type : schema .TypeBool ,
112110 Optional : true ,
113- Default : false ,
114111 },
115112 "is_realtime_performance_panel_enabled" : {
116113 Type : schema .TypeBool ,
117114 Optional : true ,
118- Default : false ,
119115 },
120116 "is_schema_advisor_enabled" : {
121117 Type : schema .TypeBool ,
122118 Optional : true ,
123- Default : false ,
124119 },
125120 },
126121 }
Original file line number Diff line number Diff line change @@ -35,11 +35,11 @@ resource "mongodbatlas_project" "test" {
3535 role_names = ["GROUP_READ_ONLY"]
3636 }
3737
38- is_collect_database_specifics_statistics_enabled = false
39- is_data_explorer_enabled = false
38+ is_collect_database_specifics_statistics_enabled = true
39+ is_data_explorer_enabled = true
4040 is_performance_advisor_enabled = true
41- is_realtime_performance_panel_enabled = false
42- is_schema_advisor_enabled = false
41+ is_realtime_performance_panel_enabled = true
42+ is_schema_advisor_enabled = true
4343}
4444```
4545
You can’t perform that action at this time.
0 commit comments