You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I understand that AWX is open source software provided for free and that I might not receive a timely response.
I am NOT reporting a (potential) security vulnerability. (These should be emailed to [email protected] instead.)
Bug Summary
I am trying to move our notifications from Connectors to Flow in MS Teams, in order for this to be properly accepted with an acceptable format, the Flow is looking for an Adaptive Card from the AWX JSON payload when making a PUT request.
I have used the adaptive cards designer here: https://adaptivecards.io/designer/ and ChatGPT helped me some of the way for the JSON payload
This is what I came up with so far and it does work in the designer URL above:
{ "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "type": "AdaptiveCard", "version": "1.3", "body": [ { "type": "TextBlock", "text": "Ansible Playbook Status", "weight": "bolder", "size": "large" }, { "type": "TextBlock", "text": "The playbook has completed execution.", "isSubtle": true }, { "type": "TextBlock", "text": "Playbook Status: {{ job_status }}", "wrap": true }, { "type": "TextBlock", "text": "Playbook Name: {{ playbook_name }}", "wrap": true }, { "type": "ActionSet", "actions": [ { "type": "Action.OpenUrl", "title": "View Details", "url": "{{ job_url }}" } ] } ] }
When I use this same format and put into the AWX Notifications Template - the "Save" button doesnt do anything, my guess it doesnt like something in this formatting:
AWX version
24.6.1
Select the relevant components
UI
UI (tech preview)
API
Docs
Collection
CLI
Other
Installation method
kubernetes
Modifications
no
Ansible version
No response
Operating system
No response
Web browser
No response
Steps to reproduce
Copy and Paste code into the GUI and hit save - doesnt save
Expected results
For the Notification template to save with updated Adaptive Card JSON payload
Actual results
Nothing happens when you hit Save button
Additional information
workflow from MS Teams
The text was updated successfully, but these errors were encountered:
@fosterseth taking a chance here and asking if you happened to know about this problem or have any thoughts to share? thanks again for all you do for the community
Please confirm the following
[email protected]
instead.)Bug Summary
I am trying to move our notifications from Connectors to Flow in MS Teams, in order for this to be properly accepted with an acceptable format, the Flow is looking for an Adaptive Card from the AWX JSON payload when making a PUT request.
I have used the adaptive cards designer here: https://adaptivecards.io/designer/ and ChatGPT helped me some of the way for the JSON payload
This is what I came up with so far and it does work in the designer URL above:
{ "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "type": "AdaptiveCard", "version": "1.3", "body": [ { "type": "TextBlock", "text": "Ansible Playbook Status", "weight": "bolder", "size": "large" }, { "type": "TextBlock", "text": "The playbook has completed execution.", "isSubtle": true }, { "type": "TextBlock", "text": "Playbook Status: {{ job_status }}", "wrap": true }, { "type": "TextBlock", "text": "Playbook Name: {{ playbook_name }}", "wrap": true }, { "type": "ActionSet", "actions": [ { "type": "Action.OpenUrl", "title": "View Details", "url": "{{ job_url }}" } ] } ] }
When I use this same format and put into the AWX Notifications Template - the "Save" button doesnt do anything, my guess it doesnt like something in this formatting:
AWX version
24.6.1
Select the relevant components
Installation method
kubernetes
Modifications
no
Ansible version
No response
Operating system
No response
Web browser
No response
Steps to reproduce
Copy and Paste code into the GUI and hit save - doesnt save
Expected results
For the Notification template to save with updated Adaptive Card JSON payload
Actual results
Nothing happens when you hit Save button
Additional information
workflow from MS Teams
The text was updated successfully, but these errors were encountered: