Skip to content

Commit 096bc32

Browse files
committed
doc: add changelog and fix example
1 parent bdeb3ef commit 096bc32

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

.changelog/3610.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
```release-note:enhancement
2+
resource/mongodbatlas_stream_connection: Adds workspace_name field as alias for instance_name.
3+
```
4+
5+
```release-note:enhancement
6+
data-source/mongodbatlas_stream_connection: Adds support for GCP as a Cloud Provider.
7+
```
8+
9+
```release-note:enhancement
10+
data-source/mongodbatlas_stream_connections: Adds support for GCP as a Cloud Provider.
11+
```

examples/mongodbatlas_stream_connection/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
resource "mongodbatlas_stream_instance" "example" {
22
project_id = var.project_id
3-
workspace_name = "WorkspaceName"
3+
instance_name = "InstanceName"
44
data_process_region = {
55
region = "VIRGINIA_USA"
66
cloud_provider = "AWS"
@@ -140,7 +140,7 @@ data "mongodbatlas_stream_connection" "example-kafka-ssl" {
140140
}
141141

142142
data "mongodbatlas_stream_connections" "example" {
143-
project_id = var.project_id
143+
project_id = var.project_id
144144
workspace_name = mongodbatlas_stream_instance.example.instance_name
145145
}
146146

0 commit comments

Comments
 (0)