community.general.stackdriver module – Send code deploy and annotation events to stackdriver
Note
This module is part of the community.general collection (version 7.5.2).
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 community.general
.
To use it in a playbook, specify: community.general.stackdriver
.
DEPRECATED
- Removed in:
version 9.0.0
- Why:
the endpoints this module relies on do not exist any more and do not resolve to IPs in DNS.
- Alternative:
no known alternative at this point
Synopsis
Send code deploy and annotation events to Stackdriver
Aliases: monitoring.stackdriver
Parameters
Parameter |
Comments |
---|---|
The person or robot who the annotation should be attributed to. Default: |
|
The person or robot responsible for deploying the code Default: |
|
The environment code was deployed to. (ie: development, staging, production) |
|
The type of event to send, either annotation or deploy Choices:
|
|
Unix timestamp of where the event should appear in the timeline, defaults to now. Be careful with this. |
|
id of an EC2 instance that this event should be attached to, which will limit the contexts where this event is shown |
|
API key. |
|
one of INFO/WARN/ERROR, defaults to INFO if not supplied. May affect display. Choices:
|
|
The contents of the annotation message, in plain text. Limited to 256 characters. Required for annotation. |
|
The repository (or project) deployed |
|
The revision of the code that was deployed. Required for deploy events |
Attributes
Attribute |
Support |
Description |
---|---|---|
Support: full |
Can run in |
|
Support: none |
Will return details on what has changed (or possibly needs changing in |
Examples
- name: Send a code deploy event to stackdriver
community.general.stackdriver:
key: AAAAAA
event: deploy
deployed_to: production
deployed_by: leeroyjenkins
repository: MyWebApp
revision_id: abcd123
- name: Send an annotation event to stackdriver
community.general.stackdriver:
key: AAAAAA
event: annotation
msg: Greetings from Ansible
annotated_by: leeroyjenkins
level: WARN
instance_id: i-abcd1234
Status
This module will be removed in version 9.0.0. [deprecated]
For more information see DEPRECATED.