From cce6cb8d7f19e11981abb1ee916613c188c4c8a9 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Mon, 16 Feb 2015 15:33:14 -0600 Subject: [PATCH] Don't hardcode a minimum size of a volume --- lib/ansible/modules/cloud/rackspace/rax_cbs.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/ansible/modules/cloud/rackspace/rax_cbs.py b/lib/ansible/modules/cloud/rackspace/rax_cbs.py index 261168889cc..43488fa7cc6 100644 --- a/lib/ansible/modules/cloud/rackspace/rax_cbs.py +++ b/lib/ansible/modules/cloud/rackspace/rax_cbs.py @@ -108,9 +108,6 @@ except ImportError: def cloud_block_storage(module, state, name, description, meta, size, snapshot_id, volume_type, wait, wait_timeout): - if size < 100: - module.fail_json(msg='"size" must be greater than or equal to 100') - changed = False volume = None instance = {}