Skip to content

Commit 8312ebd

Browse files
authored
Create 1.5.0-upgrade-guide.html.markdown (#905)
* Create 1.5.0-upgrade-guide.html.markdown * Update 1.5.0-upgrade-guide.html.markdown * Update 1.5.0-upgrade-guide.html.markdown * Update 1.5.0-upgrade-guide.html.markdown * Update 1.5.0-upgrade-guide.html.markdown * Update index.html.markdown * Update index.html.markdown * Update index.html.markdown * Update index.html.markdown * Update index.html.markdown
1 parent 8ea39e1 commit 8312ebd

File tree

2 files changed

+37
-3
lines changed

2 files changed

+37
-3
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
layout: "mongodbatlas"
3+
page_title: "MongoDB Atlas Provider 1.5.0: Upgrade and Information Guide"
4+
sidebar_current: "docs-mongodbatlas-guides-150-upgrade-guide"
5+
description: |-
6+
MongoDB Atlas Provider 1.5.0: Upgrade and Information Guide
7+
---
8+
9+
# MongoDB Atlas Provider 1.5.0: Upgrade and Information Guide
10+
11+
The Terraform MongoDB Atlas Provider version 1.5.0 has a number of new and exciting features and changes.
12+
13+
New Features:
14+
* You can now manage AWS Serverless Private Endpoints [`mongodbatlas_serverless_private_endpoints`](https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/resources/serverless_private_endpoints)
15+
* You can now manage AtlasGov Projects [`mongodbatlas_mongodbatlas_project`](https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/resources/project)
16+
* To enable the Terraform MongoDB Atlas Provider for use with AtlasGov see [`Getting Started Guide`](https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs#configure-mongodb-atlas-for-government)
17+
* You can now manage Microsoft Teams Alert Notifications with [`mongodbatlas_alert_configuration`](https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/resources/alert_configuration)
18+
19+
Changes:
20+
* You can now upgrade Shared tier clusters to Dedicated [`mongodbatlas_advanced_cluster`](https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/resources/advanced_cluster), [`mongodbatlas_cluster`](https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/resources/cluster)
21+
* Default timeout for PrivateLink Endpoint create & delete increased to 2 hours (previously 1 hour) and is now configurable [`mongodbatlas_privatelink_endpoint_service`](https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/resources/privatelink_endpoint_service)
22+
23+
24+
1.5.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.
25+
26+
27+
### Helpful Links
28+
29+
* [Report bugs](https://github.com/mongodb/terraform-provider-mongodbatlas/issues)
30+
31+
* [Request Features](https://feedback.mongodb.com/forums/924145-atlas?category_id=370723)
32+
33+
* [Contact Support](https://docs.atlas.mongodb.com/support/) covered by MongoDB Atlas support plans, Developer and above.
34+

website/docs/index.html.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,21 @@ Speaking of changes, see [CHANGELOG](https://github.com/mongodb/terraform-provid
1919
## Example Usage
2020

2121
```terraform
22-
# Configure the MongoDB Atlas Provider
22+
# Configure the MongoDB Atlas Provider
2323
provider "mongodbatlas" {
2424
public_key = var.mongodbatlas_public_key
2525
private_key = var.mongodbatlas_private_key
2626
}
2727
# Create the resources
2828
```
29-
3029
## Configure Atlas Programmatic Access
3130

3231
In order to set up authentication with the MongoDB Atlas provider, you must generate a programmatic API key for MongoDB Atlas with the appropriate [role](https://docs.atlas.mongodb.com/reference/user-roles/) and IP access list entries.
3332
The [MongoDB Atlas documentation](https://docs.atlas.mongodb.com/tutorial/manage-programmatic-access/index.html) contains the most up-to-date instructions for creating and managing your key(s), setting the appropriate role, and IP access.
3433

3534
**Role**: If unsure of which role level to grant your key, we suggest creating an organization API Key with an Organization Owner role. This ensures that you have sufficient access for all actions.
3635

37-
# Configure MongoDB Atlas for Government
36+
## Configure MongoDB Atlas for Government
3837

3938
In order to enable the Terraform MongoDB Atlas Provider for use with MongoDB Atlas for Government add is_mongodbgov_cloud = true to your provider configuration:
4039
```terraform
@@ -46,6 +45,7 @@ provider "mongodbatlas" {
4645
}
4746
# Create the resources
4847
```
48+
Also see [`Atlas for Government Considerations`](https://www.mongodb.com/docs/atlas/government/api/#atlas-for-government-considerations).
4949

5050
**API Key Access List**: Some Atlas API resources such as Cloud Backup Restores, Cloud Backup Snapshots, and Cloud Backup Schedules **require** an Atlas API Key Access List to utilize these feature. Hence, if using Terraform, or any other programmatic control, to manage these resources you must have the IP address or CIDR block that the connection is coming from added to the Atlas API Key Access List of the Atlas API key you are using. See [Resources that require API Key List](https://www.mongodb.com/docs/atlas/configure-api-access/#use-api-resources-that-require-an-access-list)
5151
## Authenticate the Provider

0 commit comments

Comments
 (0)