We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdb6de5 commit bcdb1f1Copy full SHA for bcdb1f1
.github/workflows/data-replication-pipeline.yml
@@ -71,7 +71,7 @@ jobs:
71
if [ -z "${{ inputs.db_snapshot_arn }}" ]; then
72
echo "No snapshot ARN provided, fetching the latest snapshot"
73
SNAPSHOT_ARN=$(aws rds describe-db-cluster-snapshots \
74
- --query "DBClusterSnapshots[?DBClusterIdentifier==`mavis-${{ inputs.environment }}`].[DBClusterSnapshotArn, SnapshotCreateTime]" \
+ --query "DBClusterSnapshots[?DBClusterIdentifier==mavis-${{ inputs.environment }}].[DBClusterSnapshotArn, SnapshotCreateTime]" \
75
--output text | sort -k2 -r | head -n 1 | cut -f1)
76
77
if [ -z "$SNAPSHOT_ARN" ]; then
0 commit comments