Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.8.0 CHANGELOG and UpgradeGuide #1024

Merged
merged 21 commits into from
Jan 26, 2023
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
66c627c
Create 1.8.0-upgrade-guide.html.markdown
Zuhairahmed Jan 24, 2023
546e3df
Update CHANGELOG.md
Zuhairahmed Jan 24, 2023
5bf30a4
Update CHANGELOG.md
Zuhairahmed Jan 24, 2023
4c8731e
Update CHANGELOG.md
Zuhairahmed Jan 24, 2023
2b89706
Update website/docs/guides/1.8.0-upgrade-guide.html.markdown
Zuhairahmed Jan 25, 2023
c8e1eb6
Update website/docs/guides/1.8.0-upgrade-guide.html.markdown
Zuhairahmed Jan 25, 2023
b88d05b
Update website/docs/guides/1.8.0-upgrade-guide.html.markdown
Zuhairahmed Jan 25, 2023
854f23d
Update website/docs/guides/1.8.0-upgrade-guide.html.markdown
Zuhairahmed Jan 25, 2023
081aba0
third_party_integrations_update
Zuhairahmed Jan 25, 2023
7840348
Merge branch 'v1.8.0_upgrade_guide' of https://github.com/mongodb/ter…
Zuhairahmed Jan 25, 2023
6b34d9c
Update website/docs/guides/1.8.0-upgrade-guide.html.markdown
Zuhairahmed Jan 25, 2023
8bc8c2a
Update website/docs/guides/1.8.0-upgrade-guide.html.markdown
Zuhairahmed Jan 25, 2023
09b3fdc
Update 1.8.0-upgrade-guide.html.markdown
Zuhairahmed Jan 25, 2023
9039706
warning update
Zuhairahmed Jan 25, 2023
105c58f
Merge branch 'v1.8.0_upgrade_guide' of https://github.com/mongodb/ter…
Zuhairahmed Jan 25, 2023
33b537e
Update CHANGELOG.md
Zuhairahmed Jan 25, 2023
2146869
Update 1.8.0-upgrade-guide.html.markdown
Zuhairahmed Jan 25, 2023
d0ecf55
Update 1.8.0-upgrade-guide.html.markdown
Zuhairahmed Jan 25, 2023
d686d55
Update website/docs/guides/1.8.0-upgrade-guide.html.markdown
Zuhairahmed Jan 26, 2023
ceb9856
Update website/docs/guides/1.8.0-upgrade-guide.html.markdown
Zuhairahmed Jan 26, 2023
b9e44d2
Update CHANGELOG.md
Zuhairahmed Jan 26, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [v1.8.0](https://github.com/mongodb/terraform-provider-mongodbatlas/tree/v1.8.0) (2023-1-23)
## [v1.8.0](https://github.com/mongodb/terraform-provider-mongodbatlas/tree/v1.8.0) (2023-1-25)

[Full Changelog](https://github.com/mongodb/terraform-provider-mongodbatlas/compare/v1.7.0...v1.8.0)

Expand All @@ -24,8 +24,8 @@
- Hide `current_certificate` when X.509 Authentication Database Users are Created [\#985](https://github.com/mongodb/terraform-provider-mongodbatlas/pull/985) - INTMDB-468
- Import example added for `encryption_at_rest` resource [\#992](https://github.com/mongodb/terraform-provider-mongodbatlas/pull/992) - INTMDB-530
- Resource `cloud_backup_snapshot_export_job` variable name change [\#976](https://github.com/mongodb/terraform-provider-mongodbatlas/pull/976) - INTMDB-523
- Invitation handling after user accepts invitation fix [\#1012](https://github.com/mongodb/terraform-provider-mongodbatlas/pull/1012) - INTMDB-511
- `update_snapshot` doesn't save at TF state with `cloud_backup_schedule` resource fix [\#974](https://github.com/mongodb/terraform-provider-mongodbatlas/pull/974) - INTMDB-472
- Invitation handling after user accepts invitation fix [\#1012](https://github.com/mongodb/terraform-provider-mongodbatlas/pull/1012) - INTMDB-511
- `bi_connector` settings in `advanced_cluster` fix (breaking changes) [\#1010](https://github.com/mongodb/terraform-provider-mongodbatlas/pull/1010) - INTMDB-455
- `third_party_integration` api_token keeps updating on every apply fix [\#1011](https://github.com/mongodb/terraform-provider-mongodbatlas/pull/1011) - INTMDB-519
- `custom_db_role` error fix [\#1009](https://github.com/mongodb/terraform-provider-mongodbatlas/pull/1009) - INTMDB-448
Expand All @@ -45,7 +45,7 @@

- Chore\(deps\): Bump github.com/gruntwork-io/terratest from 0.41.7 to 0.41.9 [\#1013](https://github.com/mongodb/terraform-provider-mongodbatlas/pull/1013) ([dependabot[bot]](https://github.com/apps/dependabot))

## [v1.7.0](https://github.com/mongodb/terraform-provider-mongodbatlas/tree/v1.7.0) (2022-12-23)
## [v1.7.0](https://github.com/mongodb/terraform-provider-mongodbatlas/tree/v1.7.0) (2023-1-16)

[Full Changelog](https://github.com/mongodb/terraform-provider-mongodbatlas/compare/v1.6.1...v1.7.0)

Expand Down
32 changes: 32 additions & 0 deletions website/docs/guides/1.8.0-upgrade-guide.html.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
layout: "mongodbatlas"
page_title: "MongoDB Atlas Provider 1.8.0: Upgrade and Information Guide"
sidebar_current: "docs-mongodbatlas-guides-180-upgrade-guide"
description: |-
MongoDB Atlas Provider 1.8.0: Upgrade and Information Guide
---

# MongoDB Atlas Provider 1.8.0: Upgrade and Information Guide

The Terraform MongoDB Atlas Provider version 1.8.0 has a number of new and exciting features and changes.

**Major Enhancements:**
themantissa marked this conversation as resolved.
Show resolved Hide resolved
Zuhairahmed marked this conversation as resolved.
Show resolved Hide resolved
* You can now enable and manage backup [snapshot distribution](https://www.mongodb.com/blog/post/introducing-snapshot-distribution-atlas) with [`mongodbatlas_cloud_backup_schedule`](https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/resources/cloud_backup_schedule)
* You can now manage the lifecycle of your [Programmatic API Keys](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/#tag/Programmatic-API-Keys) [`mongodbatlas_api_key`](https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/resources/api_key)
* **IMPORTANT WARNING:** Managing Atlas Programmatic API Keys (PAKs) with Terraform will expose sensitive organizational secrets in Terraform's state. We suggest following [Terraform's best practices](https://developer.hashicorp.com/terraform/language/state/sensitive-data). You may also want to consider managing your PAKs via a more secure method, such as the [HashiCorp Vault MongoDB Atlas Secrets Engine](https://developer.hashicorp.com/vault/docs/secrets/mongodbatlas).


**Depreciations:**
* [`cloud_provider_snapshot`](https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/resources/cloud_provider_snapshot), [`cloud_provider_snapshot_backup_policy`](https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/resources/cloud_provider_snapshot_backup_policy), [`cloud_provider_snapshot_restore_job`](https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/resources/cloud_provider_snapshot_restore_job), and [`private_ip_mode`](https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/resources/private_ip_mode) are now deprecated and will be removed from codebase as of v1.9
Zuhairahmed marked this conversation as resolved.
Show resolved Hide resolved
* NEW_RELIC and FLOWDOCK in [`third_party_integration`](https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/resources/third_party_integration#argument-reference) resource are now deprecated and will be removed from codebase as of v1.9 release
Zuhairahmed marked this conversation as resolved.
Show resolved Hide resolved

1.8.0 also includes general improvements and bug fixes. See the [CHANGELOG](https://github.com/mongodb/terraform-provider-mongodbatlas/blob/master/CHANGELOG.md) for more specific information.


### Helpful Links

* [Report bugs](https://github.com/mongodb/terraform-provider-mongodbatlas/issues)

* [Request Features](https://feedback.mongodb.com/forums/924145-atlas?category_id=370723)

* [Contact Support](https://docs.atlas.mongodb.com/support/) covered by MongoDB Atlas support plans, Developer and above.