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
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,12 +27,12 @@ To use a released provider in your Terraform environment, run [`terraform init`]
27
27
28
28
Documentation about the provider specific configuration options can be found on the [provider's website](https://www.terraform.io/docs/providers/).
29
29
30
-
## Beta Features
31
-
In order to use and/or test beta resources and datasources in this provider you'll need to set the environment variable `MONGODB_ATLAS_ENABLE_BETA` to true.
30
+
## Preview Features
31
+
In order to use and/or test preview resources and datasources in this provider you'll need to set the environment variable `MONGODB_ATLAS_ENABLE_PREVIEW` to true.
32
32
33
33
34
34
```bash
35
-
exportMONGODB_ATLAS_ENABLE_BETA = true
35
+
exportMONGODB_ATLAS_ENABLE_PREVIEW=true
36
36
```
37
37
## Logs
38
38
To help with issues, you can turn on Logs with `export TF_LOG=TRACE`. Note: this is very noisy.
Copy file name to clipboardExpand all lines: examples/mongodbatlas_stream_instance/atlas-streams-user-journey.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,17 +7,18 @@ Atlas Stream Processing is composed of multiple components, and users can levera
7
7
-`mongodbatlas_stream_instance`: Enables creating, modifying, and deleting Stream Instances. as part of this resource, a computed `hostnames` attribute is available for connecting to the created instance.
8
8
-`mongodbatlas_stream_connection`: Enables creating, modifying, and deleting Stream Instance Connections, which serve as data sources and sinks for your instance.
9
9
10
-
**NOTE**: To leverage these resources you'll need to set the environment variable `MONGODB_ATLAS_ENABLE_BETA=true` as this functionality is currently in preview. Also see [Limitations](https://www.mongodb.com/docs/atlas/atlas-sp/limitations/#std-label-atlas-sp-limitations) of Atlas Streams Processing during this preview period.
10
+
**NOTE**: To leverage these resources you'll need to set the environment variable `MONGODB_ATLAS_ENABLE_PREVIEW=true` as this functionality is currently in preview. Also see [Limitations](https://www.mongodb.com/docs/atlas/atlas-sp/limitations/#std-label-atlas-sp-limitations) of Atlas Streams Processing during this preview period.
11
11
12
12
### Managing Stream Processors
13
13
14
14
Once a stream instance and its connections have been defined, `Stream Processors` can be created to define how your data will be processed in your instance. There are currently no resources defined in Terraform to provide this configuration. To obtain information on how this can be configured refer to [Manage Stream Processors](https://www.mongodb.com/docs/atlas/atlas-sp/manage-stream-processor/#manage-stream-processors).
15
15
16
16
Connect to your stream instance defined in terraform using the following code block:
17
+
17
18
```
18
19
output "stream_instance_hostname" {
19
20
value = mongodbatlas_stream_instance.test.hostnames
20
21
}
21
22
```
22
23
23
-
This value can then be used to connect to the stream instance using `mongosh`, as described in the [Get Started Tutorial](https://www.mongodb.com/docs/atlas/atlas-sp/tutorial/).
24
+
This value can then be used to connect to the stream instance using `mongosh`, as described in the [Get Started Tutorial](https://www.mongodb.com/docs/atlas/atlas-sp/tutorial/).
0 commit comments