Note
This module is part of the lowlydba.sqlserver collection (version 2.6.1).
You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install lowlydba.sqlserver. You need further requirements to be able to use this module, see Requirements for details.
To use it in a playbook, specify: lowlydba.sqlserver.sa.
New in lowlydba.sqlserver 0.3.0
sa login on a SQL Server instance per best practices.The below requirements are needed on the host that executes this module.
Parameter | Comments |
|---|---|
enabled boolean added in lowlydba.sqlserver 0.4.0 | Whether the login is enabled or disabled. Choices:
|
new_name string | The new name to rename the |
password string | Password for the login. |
password_expiration_enabled boolean | Enforces password expiration policy. Requires password_policy_enforced=true. Choices:
|
password_must_change boolean | Enforces user must change password at next login. When specified, will enforce password_expiration_enabled and password_policy_enforced as they are required. Choices:
|
password_policy_enforced boolean | Enforces password complexity policy. Choices:
|
sql_instance string / required | The SQL Server instance to modify. |
sql_password string | Password for SQL Authentication. |
sql_username string | Username for SQL Authentication. |
Attribute | Support | Description |
|---|---|---|
check_mode | Support: full | Can run in check_mode and return changed status prediction without modifying target. |
platform | Platforms: all | Target OS/families that can be operated against. |
- name: Disable sa login
lowlydba.sqlserver.sa:
sql_instance: sql-01.myco.io
enabled: false
- name: Rename sa login
lowlydba.sqlserver.sa:
sql_instance: sql-01.myco.io
new_name: 'notthesayourelookingfor'
Common return values are documented here, the following are the fields unique to this module:
Key | Description |
|---|---|
data dictionary | Output from the Returned: success, but not in check_mode. |
© 2012–2018 Michael DeHaan
© 2018–2025 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/collections/lowlydba/sqlserver/sa_module.html