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
Config: streamInstanceConfig(orgID, projectName, instanceName, "VIRGINIA_USA", "AWS"), // as of now there are no values that can be updated because only one region is supported
29
+
Config: streamInstanceConfig(orgID, projectName, instanceName, region, cloudProvider), // as of now there are no values that can be updated because only one region is supported
`mongodbatlas_stream_instance` describes a stream instance.
12
+
13
+
## Example Usage
14
+
15
+
```terraform
16
+
data "mongodbatlas_stream_instance" "example" {
17
+
project_id = "<PROJECT_ID>"
18
+
instance_name = "<INSTANCE_NAME>"
19
+
}
20
+
```
21
+
22
+
## Argument Reference
23
+
24
+
*`project_id` - (Required) Unique 24-hexadecimal digit string that identifies your project.
25
+
*`instance_name` - (Required) Human-readable label that identifies the stream instance.
26
+
27
+
## Attributes Reference
28
+
29
+
*`data_process_region` - Defines the cloud service provider and region where MongoDB Cloud performs stream processing. See [data process region](#data-process-region).
30
+
*`hostnames` - List that contains the hostnames assigned to the stream instance.
31
+
32
+
33
+
### Data Process Region
34
+
35
+
*`cloud_provider` - Label that identifies the cloud service provider where MongoDB Cloud performs stream processing. The [MongoDB Atlas API](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/#tag/Streams/operation/createStreamInstance) describes the valid values.
36
+
*`region` - Name of the cloud provider region hosting Atlas Stream Processing. The [MongoDB Atlas API](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/#tag/Streams/operation/createStreamInstance) describes the valid values.
37
+
38
+
To learn more, see: [MongoDB Atlas API - Stream Instance](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/#tag/Streams/operation/createStreamInstance) Documentation.
0 commit comments