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:
parent
5aea5f4a46
commit
a4753f4539
1 changed files with 14 additions and 13 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue