New in version 1.9.
- python >= 2.6
- apache-libcloud
parameter | required | default | choices | comments |
---|---|---|---|---|
description |
no |
an optional description
|
||
family (added in 2.2) |
no |
an optional family name
|
||
name |
yes |
the name of the image to create or delete
|
||
pem_file |
no |
path to the pem file associated with the service account email
|
||
project_id |
no |
your GCE project ID
|
||
service_account_email |
no |
service account email
|
||
source |
no |
the source disk or the Google Cloud Storage URI to create the image from
|
||
state |
no | present |
|
desired state of the image
|
timeout (added in 2.0) |
no | 180 |
timeout for the operation
|
|
zone |
no | us-central1-a |
the zone of the disk specified by source
|
# Create an image named test-image from the disk 'test-disk' in zone us-central1-a. - gce_img: name: test-image source: test-disk zone: us-central1-a state: present # Create an image named test-image from a tarball in Google Cloud Storage. - gce_img: name: test-image source: https://storage.googleapis.com/bucket/path/to/image.tgz # Alternatively use the gs scheme - gce_img: name: test-image source: gs://bucket/path/to/image.tgz # Delete an image named test-image. - gce_img: name: test-image state: absent
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
For help in developing on modules, should you be so inclined, please read Community Information & Contributing, Testing Ansible and Developing Modules.