Skip to content

Commit a7edace

Browse files
authored
INTMDB-313: Set project settings to computed to ignore when not supplied by user (#778)
* Set project settings to computed to ignore when not supplied by user * Update CHANGELOG.md * Update CHANGELOG.md
1 parent eff3cdb commit a7edace

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Changelog
2+
3+
## [v1.4.2](https://github.com/mongodb/terraform-provider-mongodbatlas/tree/v1.4.2) (2022-07-7)
4+
## What's Changed
5+
6+
* INTMDB-313: Update project settings default flags by @martinstibbe in https://github.com/mongodb/terraform-provider-mongodbatlas/pull/778
7+
8+
**Full Changelog**: https://github.com/mongodb/terraform-provider-mongodbatlas/compare/v1.4.1...v1.4.2
9+
210
## [v1.4.1](https://github.com/mongodb/terraform-provider-mongodbatlas/tree/v1.4.1) (2022-07-7)
311
## What's Changed
412

mongodbatlas/resource_mongodbatlas_project.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,22 +99,27 @@ func resourceMongoDBAtlasProject() *schema.Resource {
9999
},
100100
"is_collect_database_specifics_statistics_enabled": {
101101
Type: schema.TypeBool,
102+
Computed: true,
102103
Optional: true,
103104
},
104105
"is_data_explorer_enabled": {
105106
Type: schema.TypeBool,
107+
Computed: true,
106108
Optional: true,
107109
},
108110
"is_performance_advisor_enabled": {
109111
Type: schema.TypeBool,
112+
Computed: true,
110113
Optional: true,
111114
},
112115
"is_realtime_performance_panel_enabled": {
113116
Type: schema.TypeBool,
117+
Computed: true,
114118
Optional: true,
115119
},
116120
"is_schema_advisor_enabled": {
117121
Type: schema.TypeBool,
122+
Computed: true,
118123
Optional: true,
119124
},
120125
},

0 commit comments

Comments
 (0)