community.google.gce_img module – utilize GCE image resources
Note
This module is part of the community.google collection (version 1.0.0).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install community.google
.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: community.google.gce_img
.
Synopsis
This module can create and delete GCE private images from gzipped compressed tarball containing raw disk data or from existing detached disks in any zone. https://cloud.google.com/compute/docs/images
Requirements
The below requirements are needed on the host that executes this module.
python >= 2.6
apache-libcloud
Parameters
Parameter |
Comments |
---|---|
an optional description |
|
an optional family name |
|
the name of the image to create or delete |
|
path to the pem file associated with the service account email |
|
your GCE project ID |
|
service account email |
|
the source disk or the Google Cloud Storage URI to create the image from |
|
desired state of the image Choices:
|
|
timeout for the operation Default: |
|
the zone of the disk specified by source Default: |
Examples
- name: Create an image named test-image from the disk 'test-disk' in zone us-central1-a
community.google.gce_img:
name: test-image
source: test-disk
zone: us-central1-a
state: present
- name: Create an image named test-image from a tarball in Google Cloud Storage
community.google.gce_img:
name: test-image
source: https://storage.googleapis.com/bucket/path/to/image.tgz
- name: Alternatively use the gs scheme
community.google.gce_img:
name: test-image
source: gs://bucket/path/to/image.tgz
- name: Delete an image named test-image
community.google.gce_img:
name: test-image
state: absent