summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Gagniard <gilles@gagniard.org>2016-05-19 03:53:49 -0400
committerGilles Gagniard <gilles@gagniard.org>2016-05-19 03:53:49 -0400
commit2a008998fdb1738f90a86df8830eab2889efb145 (patch)
tree7090a0fac9f36d427a282182b066294857f712ef
parent1ab2c3a737435d7d11d8b10ba13d911a845f395d (diff)
downloadansible-modules-core-2a008998fdb1738f90a86df8830eab2889efb145.tar.gz
Initial support for specifying in which subnetwork a gce instance should be created. This is required for non-legacy networks.
-rw-r--r--cloud/google/gce.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/cloud/google/gce.py b/cloud/google/gce.py
index 3339d5ca..26b8aed6 100644
--- a/cloud/google/gce.py
+++ b/cloud/google/gce.py
@@ -96,6 +96,11 @@ options:
- name of the network, 'default' will be used if not specified
required: false
default: "default"
+ subnetwork:
+ description:
+ - name of the subnetwork in which the instance should be created
+ required: false
+ default: null
persistent_boot_disk:
description:
- if set, create the instance with a persistent boot disk
@@ -285,6 +290,10 @@ def get_instance_info(inst):
netname = inst.extra['networkInterfaces'][0]['network'].split('/')[-1]
except:
netname = None
+ try:
+ subnetname = inst.extra['networkInterfaces'][0]['subnetwork'].split('/')[-1]
+ except:
+ subnetname = None
if 'disks' in inst.extra:
disk_names = [disk_info['source'].split('/')[-1]
for disk_info
@@ -305,6 +314,7 @@ def get_instance_info(inst):
'metadata': metadata,
'name': inst.name,
'network': netname,
+ 'subnetwork': subnetname,
'private_ip': inst.private_ips[0],
'public_ip': public_ip,
'status': ('status' in inst.extra) and inst.extra['status'] or None,
@@ -330,6 +340,7 @@ def create_instances(module, gce, instance_names):
machine_type = module.params.get('machine_type')
metadata = module.params.get('metadata')
network = module.params.get('network')
+ subnetwork = module.params.get('subnetwork')
persistent_boot_disk = module.params.get('persistent_boot_disk')
disks = module.params.get('disks')
state = module.params.get('state')
@@ -441,6 +452,8 @@ def create_instances(module, gce, instance_names):
)
if preemptible is not None:
gce_args['ex_preemptible'] = preemptible
+ if subnetwork is not None:
+ gce_args['ex_subnetwork'] = subnetwork
inst = None
try:
@@ -527,6 +540,7 @@ def main():
metadata = dict(),
name = dict(),
network = dict(default='default'),
+ subnetwork = dict(),
persistent_boot_disk = dict(type='bool', default=False),
disks = dict(type='list'),
state = dict(choices=['active', 'present', 'absent', 'deleted'],
@@ -558,6 +572,7 @@ def main():
metadata = module.params.get('metadata')
name = module.params.get('name')
network = module.params.get('network')
+ subnetwork = module.params.get('subnetwork')
persistent_boot_disk = module.params.get('persistent_boot_disk')
state = module.params.get('state')
tags = module.params.get('tags')
@@ -583,6 +598,10 @@ def main():
module.fail_json(msg="Apache Libcloud 0.20.0+ is required to use 'preemptible' option",
changed=False)
+ if subnetwork is not None and not hasattr(gce, 'ex_get_subnetwork'):
+ module.fail_json(msg="Your Apache Libcloud is not recent enough to enable support for subnetworks",
+ changed=False)
+
json_output = {'zone': zone}
if state in ['absent', 'deleted']:
json_output['state'] = 'absent'