rollbar_deployment – Notify Rollbar about app deployments¶
Synopsis¶
- Notify Rollbar about app deployments (see https://rollbar.com/docs/deploys_other/)
Parameters¶
Examples¶
- name: Rollbar deployment notification
  rollbar_deployment:
  token: AAAAAA
  environment: staging
  user: ansible
  revision: '4.2'
  rollbar_user: admin
  comment: Test Deploy
- name: Notify rollbar about current git revision deployment by current user
  rollbar_deployment:
  token: "{{ rollbar_access_token }}"
  environment: production
  revision: "{{ lookup('pipe', 'git rev-parse HEAD') }}"
  user: "{{ lookup('env', 'USER') }}"
Status¶
- This module is not guaranteed to have a backwards compatible interface. [preview]
- This module is maintained by the Ansible Community. [community]
Authors¶
- Max Riveiro (@kavu)
Hint
If you notice any issues in this documentation, you can edit this document to improve it.
