mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-05 10:20:26 -07:00
Merge pull request #648 from ansible-collections/remove-f-string
Prepare a v1.4.1 release
This commit is contained in:
commit
56199b760a
5 changed files with 31 additions and 2 deletions
|
@ -4,6 +4,15 @@ Google.Cloud Release Notes
|
||||||
|
|
||||||
.. contents:: Topics
|
.. contents:: Topics
|
||||||
|
|
||||||
|
v1.4.1
|
||||||
|
======
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- gcp_kms_filters - add DOCUMENTATION string
|
||||||
|
- gcp_secret_manager - make an f-string usage backward compatible
|
||||||
|
|
||||||
v1.4.0
|
v1.4.0
|
||||||
======
|
======
|
||||||
|
|
||||||
|
|
|
@ -92,3 +92,11 @@ releases:
|
||||||
fragments:
|
fragments:
|
||||||
- release-1-4-0.yml
|
- release-1-4-0.yml
|
||||||
release_date: '2024-08-21'
|
release_date: '2024-08-21'
|
||||||
|
1.4.1:
|
||||||
|
changes:
|
||||||
|
bugfixes:
|
||||||
|
- gcp_kms_filters - add DOCUMENTATION string
|
||||||
|
- gcp_secret_manager - make an f-string usage backward compatible
|
||||||
|
fragments:
|
||||||
|
- release-1-4-1.yml
|
||||||
|
release_date: '2024-08-22'
|
||||||
|
|
|
@ -10,7 +10,7 @@ namespace: google
|
||||||
name: cloud
|
name: cloud
|
||||||
|
|
||||||
# The version of the collection. Must be compatible with semantic versioning
|
# The version of the collection. Must be compatible with semantic versioning
|
||||||
version: 1.4.0
|
version: 1.4.1
|
||||||
|
|
||||||
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
|
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
|
||||||
readme: README.md
|
readme: README.md
|
||||||
|
@ -61,3 +61,6 @@ homepage: http://cloud.google.com
|
||||||
|
|
||||||
# The URL to the collection issue tracker
|
# The URL to the collection issue tracker
|
||||||
issues: https://github.com/ansible-collections/google.cloud/issues
|
issues: https://github.com/ansible-collections/google.cloud/issues
|
||||||
|
|
||||||
|
build_ignore:
|
||||||
|
- venv
|
||||||
|
|
|
@ -13,6 +13,15 @@
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
|
DOCUMENTATION = '''
|
||||||
|
author:
|
||||||
|
- Eric Anderson <eric.sysmin@gmail.com>
|
||||||
|
name: gcp_kms_filters
|
||||||
|
short_description: Support auth tokens as a Filter plugin
|
||||||
|
description:
|
||||||
|
- Enables the 'accesstoken' authentication choice.
|
||||||
|
'''
|
||||||
|
|
||||||
from ansible.errors import AnsibleError
|
from ansible.errors import AnsibleError
|
||||||
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import GcpSession
|
from ansible_collections.google.cloud.plugins.module_utils.gcp_utils import GcpSession
|
||||||
|
|
||||||
|
|
|
@ -443,7 +443,7 @@ def main():
|
||||||
fetch.pop('value')
|
fetch.pop('value')
|
||||||
fetch.pop('payload')
|
fetch.pop('payload')
|
||||||
if "msg" in fetch:
|
if "msg" in fetch:
|
||||||
fetch['msg'] = f"{fetch['msg']} | not returning secret value since 'return_value is set to false"
|
fetch['msg'] = "{} | not returning secret value since 'return_value is set to false".format(fetch['msg'])
|
||||||
else:
|
else:
|
||||||
fetch['msg'] = "not returning secret value since 'return_value is set to false"
|
fetch['msg'] = "not returning secret value since 'return_value is set to false"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue