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 {
100
100
"is_collect_database_specifics_statistics_enabled" : {
101
101
Type : schema .TypeBool ,
102
102
Optional : true ,
103
- Default : false ,
104
103
},
105
104
"is_data_explorer_enabled" : {
106
105
Type : schema .TypeBool ,
107
106
Optional : true ,
108
- Default : false ,
109
107
},
110
108
"is_performance_advisor_enabled" : {
111
109
Type : schema .TypeBool ,
112
110
Optional : true ,
113
- Default : false ,
114
111
},
115
112
"is_realtime_performance_panel_enabled" : {
116
113
Type : schema .TypeBool ,
117
114
Optional : true ,
118
- Default : false ,
119
115
},
120
116
"is_schema_advisor_enabled" : {
121
117
Type : schema .TypeBool ,
122
118
Optional : true ,
123
- Default : false ,
124
119
},
125
120
},
126
121
}
Original file line number Diff line number Diff line change @@ -35,11 +35,11 @@ resource "mongodbatlas_project" "test" {
35
35
role_names = ["GROUP_READ_ONLY"]
36
36
}
37
37
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
40
40
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
43
43
}
44
44
```
45
45
You can’t perform that action at this time.
0 commit comments