Skip to content

Commit

Permalink
INTMDB-313: Update project settings default flags to true (#773)
Browse files Browse the repository at this point in the history
* Update project settings default flags to true

* Remove default true for project settings
  • Loading branch information
martinstibbe authored Jul 6, 2022
1 parent ec85c1f commit f7b0e4c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
5 changes: 0 additions & 5 deletions mongodbatlas/resource_mongodbatlas_project.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,27 +100,22 @@ func resourceMongoDBAtlasProject() *schema.Resource {
"is_collect_database_specifics_statistics_enabled": {
Type: schema.TypeBool,
Optional: true,
Default: false,
},
"is_data_explorer_enabled": {
Type: schema.TypeBool,
Optional: true,
Default: false,
},
"is_performance_advisor_enabled": {
Type: schema.TypeBool,
Optional: true,
Default: false,
},
"is_realtime_performance_panel_enabled": {
Type: schema.TypeBool,
Optional: true,
Default: false,
},
"is_schema_advisor_enabled": {
Type: schema.TypeBool,
Optional: true,
Default: false,
},
},
}
Expand Down
8 changes: 4 additions & 4 deletions website/docs/r/project.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ resource "mongodbatlas_project" "test" {
role_names = ["GROUP_READ_ONLY"]
}
is_collect_database_specifics_statistics_enabled = false
is_data_explorer_enabled = false
is_collect_database_specifics_statistics_enabled = true
is_data_explorer_enabled = true
is_performance_advisor_enabled = true
is_realtime_performance_panel_enabled = false
is_schema_advisor_enabled = false
is_realtime_performance_panel_enabled = true
is_schema_advisor_enabled = true
}
```

Expand Down

0 comments on commit f7b0e4c

Please sign in to comment.