Merge pull request #336 from skottler/cleanup/65/remove-unsupported-states
digital ocean: Remove unsupported states
This commit is contained in:
commit
b493bd9a0d
1 changed files with 3 additions and 3 deletions
|
@ -27,7 +27,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Indicate desired state of the target.
|
- Indicate desired state of the target.
|
||||||
default: present
|
default: present
|
||||||
choices: ['present', 'active', 'absent', 'deleted']
|
choices: ['present', 'absent']
|
||||||
client_id:
|
client_id:
|
||||||
description:
|
description:
|
||||||
- DigitalOcean manager id.
|
- DigitalOcean manager id.
|
||||||
|
@ -181,7 +181,7 @@ def core(module):
|
||||||
|
|
||||||
if not domain:
|
if not domain:
|
||||||
domain = Domain.find(name=getkeyordie("name"))
|
domain = Domain.find(name=getkeyordie("name"))
|
||||||
|
|
||||||
if not domain:
|
if not domain:
|
||||||
domain = Domain.add(getkeyordie("name"),
|
domain = Domain.add(getkeyordie("name"),
|
||||||
getkeyordie("ip"))
|
getkeyordie("ip"))
|
||||||
|
@ -217,7 +217,7 @@ def core(module):
|
||||||
def main():
|
def main():
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec = dict(
|
argument_spec = dict(
|
||||||
state = dict(choices=['active', 'present', 'absent', 'deleted'], default='present'),
|
state = dict(choices=['present', 'absent'], default='present'),
|
||||||
client_id = dict(aliases=['CLIENT_ID'], no_log=True),
|
client_id = dict(aliases=['CLIENT_ID'], no_log=True),
|
||||||
api_key = dict(aliases=['API_KEY'], no_log=True),
|
api_key = dict(aliases=['API_KEY'], no_log=True),
|
||||||
name = dict(type='str'),
|
name = dict(type='str'),
|
||||||
|
|
Loading…
Reference in a new issue