Skip to content

Commit c1d955f

Browse files
Extra = sign added to avoid Bad value for --query (#435)
1 parent aaeae19 commit c1d955f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

playbooks/oracle_ssl_wallet/oracle_ssl_wallet/tasks/upload_certificate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
# associated with these endpoints and temporarily stop them
7070
- name: Get List of Running Replication Tasks Using Endpoint with Old Certificate or are Unconfigured
7171
shell: |
72-
aws dms describe-replication-tasks --query "ReplicationTasks[?(SourceEndpointArn=='{{ endpoint_arn }}'||TargetEndpointArn=='{{ endpoint_arn }}')&&(Status=='running'||Status='starting')].ReplicationTaskArn" --region {{ region }} --output text | sed 's/\t/\n/g'
72+
aws dms describe-replication-tasks --query "ReplicationTasks[?(SourceEndpointArn=='{{ endpoint_arn }}'||TargetEndpointArn=='{{ endpoint_arn }}')&&(Status=='running'||Status=='starting')].ReplicationTaskArn" --region {{ region }} --output text | sed 's/\t/\n/g'
7373
loop: "{{ ( get_inuse_endpoint_list.stdout_lines | default([]) ) + ( get_unconfigured_endpoint_list.stdout_lines | default([]) ) }}"
7474
loop_control:
7575
loop_var: endpoint_arn

0 commit comments

Comments
 (0)