mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
Merge branch 'ansible-collections:master' into gcp_secret_manager
This commit is contained in:
commit
375b317692
7 changed files with 39 additions and 7 deletions
|
@ -5,6 +5,21 @@ Google.Cloud Release Notes
|
||||||
.. contents:: Topics
|
.. contents:: Topics
|
||||||
|
|
||||||
|
|
||||||
|
v1.2.0
|
||||||
|
======
|
||||||
|
|
||||||
|
Minor Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- Add DataPlane V2 Support.
|
||||||
|
- Add auth support for GCP access tokens (#574).
|
||||||
|
- Add support for ip_allocation_policy->stack_type.
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- Use default service account if `service_account_email` is unset.
|
||||||
|
|
||||||
v1.1.3
|
v1.1.3
|
||||||
======
|
======
|
||||||
|
|
||||||
|
|
|
@ -58,6 +58,10 @@ antsibull-changelog release
|
||||||
This will remove all the changelog fragments from ./changelogs/fragments and
|
This will remove all the changelog fragments from ./changelogs/fragments and
|
||||||
merge them into CHANGELOG.rst.
|
merge them into CHANGELOG.rst.
|
||||||
|
|
||||||
|
### Send a PR and merge
|
||||||
|
|
||||||
|
Send a PR with these changes and merge them.
|
||||||
|
|
||||||
### Create a new GitHub release
|
### Create a new GitHub release
|
||||||
|
|
||||||
Creating
|
Creating
|
||||||
|
|
|
@ -6,6 +6,7 @@ plugins:
|
||||||
callback: {}
|
callback: {}
|
||||||
cliconf: {}
|
cliconf: {}
|
||||||
connection: {}
|
connection: {}
|
||||||
|
filter: {}
|
||||||
httpapi: {}
|
httpapi: {}
|
||||||
inventory:
|
inventory:
|
||||||
gcp_compute:
|
gcp_compute:
|
||||||
|
@ -867,5 +868,6 @@ plugins:
|
||||||
netconf: {}
|
netconf: {}
|
||||||
shell: {}
|
shell: {}
|
||||||
strategy: {}
|
strategy: {}
|
||||||
|
test: {}
|
||||||
vars: {}
|
vars: {}
|
||||||
version: 1.1.3
|
version: 1.2.0
|
||||||
|
|
|
@ -46,3 +46,12 @@ releases:
|
||||||
fragments:
|
fragments:
|
||||||
- gce-changelog.yaml
|
- gce-changelog.yaml
|
||||||
release_date: '2023-03-04'
|
release_date: '2023-03-04'
|
||||||
|
1.2.0:
|
||||||
|
changes:
|
||||||
|
bugfixes:
|
||||||
|
- Use default service account if `service_account_email` is unset.
|
||||||
|
minor_changes:
|
||||||
|
- Add DataPlane V2 Support.
|
||||||
|
- Add auth support for GCP access tokens (#574).
|
||||||
|
- Add support for ip_allocation_policy->stack_type.
|
||||||
|
release_date: '2023-07-07'
|
||||||
|
|
|
@ -9,7 +9,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.1.3"
|
version: "1.2.0"
|
||||||
|
|
||||||
# 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
|
||||||
|
|
|
@ -39,7 +39,7 @@ DOCUMENTATION = """
|
||||||
description: >
|
description: >
|
||||||
A list of filter value pairs. Available filters are listed here
|
A list of filter value pairs. Available filters are listed here
|
||||||
U(https://cloud.google.com/compute/docs/reference/rest/v1/instances/aggregatedList).
|
U(https://cloud.google.com/compute/docs/reference/rest/v1/instances/aggregatedList).
|
||||||
Each additional filter in the list will act be added as an AND condition
|
Each additional filter in the list will be added as an AND condition
|
||||||
(filter1 and filter2)
|
(filter1 and filter2)
|
||||||
type: list
|
type: list
|
||||||
hostnames:
|
hostnames:
|
||||||
|
|
|
@ -71,8 +71,9 @@ options:
|
||||||
type: dict
|
type: dict
|
||||||
path:
|
path:
|
||||||
description:
|
description:
|
||||||
- The full name of the file that will hold the service account private key. The
|
- The full name of the file that will hold the service account private key.
|
||||||
management of this file will depend on the value of sync_file parameter.
|
- If the file already exists, it will attempt to be read. Ensure the file does
|
||||||
|
not exist or is alreay a valid key.
|
||||||
- File path must be absolute.
|
- File path must be absolute.
|
||||||
required: false
|
required: false
|
||||||
type: path
|
type: path
|
||||||
|
@ -192,8 +193,9 @@ serviceAccount:
|
||||||
type: dict
|
type: dict
|
||||||
path:
|
path:
|
||||||
description:
|
description:
|
||||||
- The full name of the file that will hold the service account private key. The
|
- The full name of the file that will hold the service account private key.
|
||||||
management of this file will depend on the value of sync_file parameter.
|
- If the file already exists, it will attempt to be read. Ensure the file does
|
||||||
|
not exist or is alreay a valid key.
|
||||||
- File path must be absolute.
|
- File path must be absolute.
|
||||||
returned: success
|
returned: success
|
||||||
type: str
|
type: str
|
||||||
|
|
Loading…
Add table
Reference in a new issue