Hello,
So I am new to ansible and I have been looking for a way to create a user on mssql database using ansible but I can't seem to find a module for that. What I saw is more for MySql db.
- name: Create DB user with name 'bob' and password '12345' with all database privileges
mysql_user:
name: bob
password: 12345
priv: '*.*:ALL'
state: present
Even the above looks like the user will be created on the server not the DB
I have explored using SQLCMD but haven't found anything concrete on that as well.
Any help is appreciated