You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -12,8 +12,14 @@ The Terraform MongoDB Atlas Provider version 1.2.0 has a number of new and excit
12
12
13
13
New Features:
14
14
15
-
* You can now manage private link endpoints for Data Lake and Online Archive with [`private_link_endpoint_adl`](https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/resources/private_link_endpoint_adl).
15
+
* Now supports Private Link for Atlas Data Lake and Online Archive [`mongodbatlas_privatelink_endpoint_service_adl`](https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/resources/privatelink_endpoint_service_adl)
16
+
* You can now pause clusters [`mongodbatlas_cluster`](https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/resources/cluster)
17
+
* You can now add an existing API key to a project [`mongodbatlas_project`](https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/resources/project)
18
+
* Adds version_release_system to the [`mongodbatlas_cluster`](https://registry.terraform.io/providers/mongodb/mongodbatlas/latest/docs/resources/cluster) resource and data source
19
+
20
+
Changes:
16
21
22
+
1.2.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.
Copy file name to clipboardExpand all lines: website/docs/r/project.html.markdown
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,14 +60,12 @@ Teams attribute is optional
60
60
*`GROUP_DATA_ACCESS_READ_ONLY`
61
61
*`GROUP_CLUSTER_MANAGER`
62
62
63
-
64
63
~> **NOTE:** Project created by API Keys must belong to an existing organization.
65
64
66
65
### Programmatic API Keys
67
66
api_keys allows one to assign an existing organization programmatic API key to a Project. The api_keys attribute is optional.
68
67
69
-
70
-
*`api_key_id` - (Required) The unique identifier of the Programmatic API key you want to associate with the Project. The Programmatic API key and Project must share the same parent organization.
68
+
*`api_key_id` - (Required) The unique identifier of the Programmatic API key you want to associate with the Project. The Programmatic API key and Project must share the same parent organization. Note: this is not the `publicKey` of the Programmatic API key but the `id` of the key. See [Programmatic API Keys](https://docs.atlas.mongodb.com/reference/api/apiKeys/) for more.
71
69
72
70
*`role_names` - (Required) List of Project roles that the Programmatic API key needs to have. Ensure you provide: at least one role and ensure all roles are valid for the Project. You must specify an array even if you are only associating a single role with the Programmatic API key.
0 commit comments