mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-22 05:09:12 +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"""
|
RETURN = r"""
|
||||||
result:
|
secrets:
|
||||||
description: The result of the module.
|
description: The list of currently existing secrets.
|
||||||
type: dict
|
type: list
|
||||||
returned: always
|
elements: dict
|
||||||
sample: {
|
returned: success
|
||||||
"secrets": [
|
sample: [
|
||||||
{
|
{
|
||||||
"created_at": "2026-01-11T23:19:00Z",
|
"created_at": "2026-01-11T23:19:00Z",
|
||||||
"name": "ANSIBLE",
|
"name": "ANSIBLE",
|
||||||
"updated_at": "2026-02-15T22:18:16Z"
|
"updated_at": "2026-02-15T22:18:16Z"
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
}
|
contains:
|
||||||
|
... describe the fields inside the dictionaries here ...
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import json
|
import json
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue