Skip to content

Commit f7b0e4c

Browse files
authored
INTMDB-313: Update project settings default flags to true (#773)
* Update project settings default flags to true * Remove default true for project settings
1 parent ec85c1f commit f7b0e4c

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

mongodbatlas/resource_mongodbatlas_project.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff 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
}

website/docs/r/project.html.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)