Skip to content

Commit 923243f

Browse files
nikhil-mongoNikhil Singh
andauthored
update the documentations for new changes (#670)
Co-authored-by: Nikhil Singh <[email protected]>
1 parent 7b4c5a8 commit 923243f

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

examples/atlas-encryption-at-rest/aws/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ resource "mongodbatlas_cloud_provider_access_authorization" "auth_role" {
1515
resource "mongodbatlas_encryption_at_rest" "test" {
1616
project_id = var.project_id
1717

18-
aws_kms = {
18+
aws_kms_config {
1919
enabled = true
2020
customer_master_key_id = var.customer_master_key
2121
region = var.atlas_region

website/docs/d/privatelink_endpoint.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ description: |-
1818
resource "mongodbatlas_privatelink_endpoint" "test" {
1919
project_id = "<PROJECT-ID>"
2020
provider_name = "AWS"
21-
region = "us-east-1"
21+
region = "US_EAST_1"
2222
}
2323
2424
data "mongodbatlas_privatelink_endpoint" "test" {

website/docs/d/privatelink_endpoint_service.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ description: |-
1818
resource "mongodbatlas_privatelink_endpoint" "test" {
1919
project_id = "<PROJECT_ID>"
2020
provider_name = "AWS"
21-
region = "us-east-1"
21+
region = "US_EAST_1"
2222
}
2323
2424
resource "aws_vpc_endpoint" "ptfe_service" {

website/docs/guides/1.0.0-upgrade-guide.html.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ aws = {
155155

156156
New usage:
157157
```terraform
158-
aws_config {
158+
aws {
159159
iam_assumed_role_arn = aws_iam_role.test_role.arn
160160
}
161161
```
@@ -184,9 +184,9 @@ delivery_type_config {
184184

185185
### Encryption at rest
186186
- Fields Affected:
187-
- aws_kms (deprecated), use aws_kms instead
188-
- azure_key_vault (deprecated), use azure_key_vault instead
189-
- google_cloud_kms (deprecated), use google_cloud_kms instead
187+
- aws_kms (deprecated), use aws_kms_config instead
188+
- azure_key_vault (deprecated), use azure_key_vault_config instead
189+
- google_cloud_kms (deprecated), use google_cloud_kms_config instead
190190

191191
Old usage:
192192
```terraform

website/docs/r/privatelink_endpoint.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ description: |-
2525
resource "mongodbatlas_privatelink_endpoint" "test" {
2626
project_id = "<PROJECT-ID>"
2727
provider_name = "AWS/AZURE"
28-
region = "us-east-1"
28+
region = "US_EAST_1"
2929
}
3030
```
3131

website/docs/r/privatelink_endpoint_service.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ description: |-
2323
resource "mongodbatlas_privatelink_endpoint" "test" {
2424
project_id = "<PROJECT_ID>"
2525
provider_name = "AWS"
26-
region = "us-east-1"
26+
region = "US_EAST_1"
2727
}
2828
2929
resource "aws_vpc_endpoint" "ptfe_service" {

0 commit comments

Comments
 (0)