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
Provide a brief overview and context for the discovered bug.
When we try to update the `Remmote Machines" of an existing account, the task failed with the following message.
"msg": "Error while performing update_account.Please validate parameters provided.\n*** end_point=********/PasswordVault/api/Accounts/70_8\n ==> {'ErrorCode': 'PASWS125E', 'ErrorMessage': \"Property 'remotemachinesaccess' cannot be added\"}",
Steps to Reproduce
Create an account in CyberArk (if doesn't exist). (This is also working with the Ansible playbook to create the new Account)
Add some remote machine IP address in the "Remote Machines" section (eg: 1.1.1.1, 2.2.2.2, 3.3.3.3).
Use the playbook to append the new IP address to the list (eg: 4.4.4.4.
- name: Logon to CyberArk Vault using PAS Web Services SDKdelegate_to: localhostcyberark.pas.cyberark_authentication:
api_base_url: "{{ lookup('ansible.builtin.env', 'CYBERARK_VAULT_URL') }}"validate_certs: falseusername: "{{ lookup('ansible.builtin.env', 'CYBERARK_AUTH_USERNAME') }}"password: "{{ lookup('ansible.builtin.env', 'CYBERARK_AUTH_PASSWORD') }}"use_ldap_authentication: trueno_log: true
- name: Updating the account with new remote_machinesblock:
- name: Update Account using the PAS WebServices SDKdelegate_to: localhostcyberark.pas.cyberark_account:
safe: "{{ cyberark_safe_name }}"address: "{{ cyberark_entry_address }}"username: "{{ cyberark_account_username }}"platform_id: "{{ cyberark_platform_id }}"remote_machines_access:
remote_machines: "4.4.4.4"state: presentcyberark_session: "{{ cyberark_session }}"register: cyberark_actionalways:
- name: Logoff from CyberArk Vaultdelegate_to: localhostcyberark.pas.cyberark_authentication:
state: absentcyberark_session: "{{ cyberark_session }}"
Expected Results
A clear and concise description of what you expected to happen.
The new IP address (eg: 4.4.4.4) should be appended to the remote machines list. (eg: 1.1.1.1, 2.2.2.2, 3.3.3.3, 4.4.4.4).
Actual Results
A clear and concise description of what did happen. Include logs and
screens shots, whenever possible
What version of the product are you running? Any version info that you can
share is helpful. For example, you might give the version from Docker logs,
the Docker tag, a specific download URL, the output of the /info route, etc.
Summary
Provide a brief overview and context for the discovered bug.
When we try to update the `Remmote Machines" of an existing account, the task failed with the following message.
Steps to Reproduce
1.1.1.1, 2.2.2.2, 3.3.3.3
).4.4.4.4
.Expected Results
A clear and concise description of what you expected to happen.
The new IP address (eg:
4.4.4.4
) should be appended to the remote machines list. (eg:1.1.1.1, 2.2.2.2, 3.3.3.3, 4.4.4.4
).Actual Results
A clear and concise description of what did happen. Include logs and
screens shots, whenever possible
Reproducible
Version/Tag number
What version of the product are you running? Any version info that you can
share is helpful. For example, you might give the version from Docker logs,
the Docker tag, a specific download URL, the output of the
/info
route, etc.Environment setup
Additional Information
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: