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: CHANGELOG.md
+42Lines changed: 42 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,48 @@
3
3
All notable changes to this project will be documented in this file.
4
4
See updating [Changelog example here](https://keepachangelog.com/en/1.0.0/)
5
5
6
+
# 2.1.1 (6th Feb 2025)
7
+
8
+
### Added
9
+
10
+
- Documentation related to using the [Redis Cloud Private Service Connect Module](https://github.com/RedisLabs/terraform-rediscloud-private-service-connect)
11
+
to simplify the Terraform configuration.
12
+
13
+
# 2.1.0 (6th Feb 2025)
14
+
15
+
### Added
16
+
17
+
- Added resources for provisioning Private Service Connect in GCP on Active-Active and Pro subscriptions.
and `rediscloud_active_active_private_service_connect_endpoints`
23
+
24
+
### Changed
25
+
26
+
- Upgraded the provider to use `v0.22.0` of the [rediscloud-go-api](https://github.com/RedisLabs/rediscloud-go-api) SDK.
27
+
28
+
# 2.0.0 (5th Dec 2024)
29
+
30
+
### Changed
31
+
32
+
- Upgraded the provider to use `v0.21.0` of the [rediscloud-go-api](https://github.com/RedisLabs/rediscloud-go-api) which handles API rate limits gracefully.
33
+
34
+
### Removed
35
+
36
+
-`latest_backup_status` and `latest_import_status` from `rediscloud_active_active_subscription_database`,
37
+
`rediscloud_active_active_subscription_regions`, `rediscloud_subscription_database` and `rediscloud_essentials_database`.
38
+
Users should use the equivalent data sources instead.
39
+
40
+
# 1.9.0 (9th Oct 2024)
41
+
42
+
### Added
43
+
44
+
- Tags as key/value pairs on Pro and ActiveActive databases
45
+
- The facility for users to upgrade from memorySizeInGb to datasetSizeInGb
46
+
(please note that changing back may have unexpected results and is not supported)
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
0 commit comments