1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-03-21 20:59:10 +00:00

Update plugins/modules/github_secrets_info.py

Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
Thomas Sjögren 2026-03-15 16:56:58 +01:00 committed by GitHub
parent 5aea5f4a46
commit a4753f4539
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -55,19 +55,20 @@ EXAMPLES = r"""
"""
RETURN = r"""
result:
description: The result of the module.
type: dict
returned: always
sample: {
"secrets": [
{
"created_at": "2026-01-11T23:19:00Z",
"name": "ANSIBLE",
"updated_at": "2026-02-15T22:18:16Z"
},
]
}
secrets:
description: The list of currently existing secrets.
type: list
elements: dict
returned: success
sample: [
{
"created_at": "2026-01-11T23:19:00Z",
"name": "ANSIBLE",
"updated_at": "2026-02-15T22:18:16Z"
},
]
contains:
... describe the fields inside the dictionaries here ...
"""
import json