Note
This plugin is part of the community.general collection.
To install it use: ansible-galaxy collection install community.general
.
To use it in a playbook, specify: community.general.airbrake_deployment
.
Parameter | Choices/Defaults | Comments |
---|---|---|
environment string / required | The airbrake environment name, typically 'production', 'staging', etc. | |
project_id string added in 0.2.0 of community.general | Airbrake PROJECT_ID | |
project_key string added in 0.2.0 of community.general | Airbrake PROJECT_KEY. | |
repo string | URL of the project repository | |
revision string | A hash, number, tag, or other identifier showing what revision from version control was deployed | |
token string | This parameter (API token) has been deprecated in community.general 0.2.0. Please remove it from your tasks. | |
url string | Default: "https://api.airbrake.io/api/v4/projects/" | Optional URL to submit the notification to. Use to send notifications to Airbrake-compliant tools like Errbit. |
user string | The username of the person doing the deployment | |
validate_certs boolean |
| If no , SSL certificates for the target url will not be validated. This should only be used on personally controlled sites using self-signed certificates. |
version string added in 1.0.0 of community.general | A string identifying what version was deployed |
- name: Notify airbrake about an app deployment community.general.airbrake_deployment: project_id: '12345' project_key: 'AAAAAA' environment: staging user: ansible revision: '4.2' - name: Notify airbrake about an app deployment, using git hash as revision community.general.airbrake_deployment: project_id: '12345' project_key: 'AAAAAA' environment: staging user: ansible revision: 'e54dd3a01f2c421b558ef33b5f79db936e2dcf15' version: '0.2.0'
© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.10/collections/community/general/airbrake_deployment_module.html