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
<h3id="list-all-databases-across-subscriptions"><aclass="header" href="#list-all-databases-across-subscriptions">List All Databases Across Subscriptions</a></h3>
351
-
<pre><codeclass="language-bash"># Get all subscription IDs
352
-
SUBS=$(redisctl cloud subscription list -q "[].id" | jq -r '.[]')
353
-
354
-
# List databases for each subscription
355
-
for sub in $SUBS; do
351
+
<pre><codeclass="language-bash"># List databases for each subscription
352
+
for sub in $(redisctl cloud subscription list -q '[].id' --raw); do
<h3id="scenario-3-clone-production-to-staging"><aclass="header" href="#scenario-3-clone-production-to-staging">Scenario 3: Clone Production to Staging</a></h3>
325
325
<p>Use backups to create staging environments:</p>
326
-
<pre><codeclass="language-bash"># Get latest production backup
326
+
<pre><codeclass="language-bash"># Get latest production backup using JMESPath
0 commit comments