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
Active-Active Private Service Connect data source in the Redis Cloud Terraform provider.
6
+
---
7
+
8
+
# Data Source: rediscloud_active_active_private_service_connect
9
+
10
+
The Active-Active Private Service Connect data source allows access to an available the Private Service Connect Service within your Redis Enterprise Subscription.
11
+
12
+
## Example Usage
13
+
14
+
```hcl
15
+
data "rediscloud_active_active_private_service_connect" "example" {
16
+
subscription_id = "1234"
17
+
region_id = 1
18
+
}
19
+
20
+
output "rediscloud_psc_status" {
21
+
value = data.rediscloud_active_active_private_service_connect.example.status
22
+
}
23
+
```
24
+
25
+
## Argument Reference
26
+
27
+
*`subscription_id` - (Required) The ID of an Active-Active subscription
28
+
*`region_id` - (Required) The ID of the GCP region
29
+
30
+
## Attribute Reference
31
+
32
+
*`private_service_connect_service_id` - The ID of the Private Service Connect Service relative to the associated subscription
33
+
*`connection_host_name` - The connection hostname
34
+
*`service_attachment_name` - The service attachment name
Manages a Private Service Connect to an Active-Active Subscription in your Redis Enterprise Cloud Account.
11
+
12
+
## Example Usage
13
+
14
+
[Full example in the `rediscloud_active_active_private_service_connect_endpoint` resource](./rediscloud_active_active_private_service_connect_endpoint.md)
15
+
16
+
## Argument Reference
17
+
18
+
*`subscription_id` - (Required) The ID of the Pro subscription to attach **Modifying this attribute will force creation of a new resource.**
19
+
*`region_id` - (Required) The ID of the region, as created by the API **Modifying this attribute will force creation of a new resource.**
20
+
21
+
## Attribute Reference
22
+
23
+
*`private_service_connect_service_id` - The ID of the Private Service Connect Service relative to the associated subscription
24
+
25
+
## Import
26
+
27
+
`rediscloud_active_active_private_service_connect` can be imported using the ID of the Active-Active subscription, the region ID and the ID of the Private Service Connect in the format {subscription ID/region ID/private service connect ID}, e.g.
0 commit comments