Skip to content

Commit

Permalink
Fix cloud connector branding
Browse files Browse the repository at this point in the history
  • Loading branch information
ShimShtein authored and evgeni committed Jun 14, 2022
1 parent f9a374b commit fb8d3bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles/cloud_connector/tasks/delete_source.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
- name: Get source record
ansible.builtin.uri:
url: "https://{{ foreman_cloud_connector_console_redhat_host }}/api/sources/v3.1/sources?filter[source_ref]={{ satellite_uuid_json.json.results[0].value }}"
url: "https://{{ satellite_cloud_connector_console_redhat_host }}/api/sources/v3.1/sources?filter[source_ref]={{ satellite_uuid_json.json.results[0].value }}"
client_cert: "{{ item.path }}/cert.pem"
client_key: "{{ item.path }}/key.pem"
return_content: true
Expand All @@ -12,7 +12,7 @@
source_id: "{{ source_record_response.json.data[0].id }}"
when: "source_record_response.json.data | length == 1"
ansible.builtin.uri:
url: "https://{{ foreman_cloud_connector_console_redhat_host }}/api/sources/v3.1/sources/{{ source_id }}"
url: "https://{{ satellite_cloud_connector_console_redhat_host }}/api/sources/v3.1/sources/{{ source_id }}"
client_cert: "{{ item.path }}/cert.pem"
client_key: "{{ item.path }}/key.pem"
method: "DELETE"
Expand Down

0 comments on commit fb8d3bd

Please sign in to comment.