1
0
Fork 0
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:
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""" 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