I am trying to use oracle_privs module to revoke privileges in account.
Below is my playbook
tasks:
- name: This playbook will grant or revoke privilges in the user.
oracle_privs:
user: "{{user}}"
password: "{{password}}"
service_name: "{{sname}}"
port: "{{prt}}"
hostname: "{{hostname}}"
privs:
- INSERT ANY TABLE
state: absent
roles:
- TSTSCH
environment: "{{oracle_env}}"
register: user_privs
delegate_to: localhost
And here is what I get
"msg": {
"changed": false,
"failed": false,
"msg": null
}
}
What am I missing here ?
--
You received this message because you are subscribed to the Google Groups
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/ansible-project/510bad9a-41a0-4587-98f6-a09a2d0ab603%40googlegroups.com.