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: google/services/redis/resource_redis_cluster.go
+127Lines changed: 127 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -625,6 +625,32 @@ resolution and up to nine fractional digits.`,
625
625
},
626
626
},
627
627
},
628
+
"managed_server_ca": {
629
+
Type: schema.TypeList,
630
+
Computed: true,
631
+
Description: `Cluster's Certificate Authority. This field will only be populated if Redis Cluster's transit_encryption_mode is TRANSIT_ENCRYPTION_MODE_SERVER_AUTHENTICATION`,
632
+
Elem: &schema.Resource{
633
+
Schema: map[string]*schema.Schema{
634
+
"ca_certs": {
635
+
Type: schema.TypeList,
636
+
Computed: true,
637
+
Description: `The PEM encoded CA certificate chains for redis managed server authentication`,
638
+
Elem: &schema.Resource{
639
+
Schema: map[string]*schema.Schema{
640
+
"certificates": {
641
+
Type: schema.TypeList,
642
+
Computed: true,
643
+
Description: `The certificates that form the CA chain, from leaf to root order`,
Copy file name to clipboardExpand all lines: website/docs/r/redis_cluster.html.markdown
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1014,6 +1014,10 @@ In addition to the arguments listed above, the following computed attributes are
1014
1014
Service attachment details to configure Psc connections.
1015
1015
Structure is [documented below](#nested_psc_service_attachments).
1016
1016
1017
+
*`managed_server_ca` -
1018
+
Cluster's Certificate Authority. This field will only be populated if Redis Cluster's transit_encryption_mode is TRANSIT_ENCRYPTION_MODE_SERVER_AUTHENTICATION
1019
+
Structure is [documented below](#nested_managed_server_ca).
0 commit comments