Merge pull request #146 from axialops/rds-reboot
rds module: add command to reboot RDS instance
This commit is contained in:
commit
ab9d4eb25d
1 changed files with 58 additions and 2 deletions
|
@ -28,7 +28,7 @@ options:
|
||||||
required: true
|
required: true
|
||||||
default: null
|
default: null
|
||||||
aliases: []
|
aliases: []
|
||||||
choices: [ 'create', 'replicate', 'delete', 'facts', 'modify' , 'promote', 'snapshot', 'restore' ]
|
choices: [ 'create', 'replicate', 'delete', 'facts', 'modify' , 'promote', 'snapshot', 'reboot', 'restore' ]
|
||||||
instance_name:
|
instance_name:
|
||||||
description:
|
description:
|
||||||
- Database instance identifier. Required except when using command=facts or command=delete on just a snapshot
|
- Database instance identifier. Required except when using command=facts or command=delete on just a snapshot
|
||||||
|
@ -213,6 +213,13 @@ options:
|
||||||
default: no
|
default: no
|
||||||
choices: [ "yes", "no" ]
|
choices: [ "yes", "no" ]
|
||||||
aliases: []
|
aliases: []
|
||||||
|
force_failover:
|
||||||
|
description:
|
||||||
|
- Used only when command=reboot. If enabled, the reboot is done using a MultiAZ failover.
|
||||||
|
required: false
|
||||||
|
default: "no"
|
||||||
|
choices: [ "yes", "no" ]
|
||||||
|
aliases: []
|
||||||
new_instance_name:
|
new_instance_name:
|
||||||
description:
|
description:
|
||||||
- Name to rename an instance to. Used only when command=modify.
|
- Name to rename an instance to. Used only when command=modify.
|
||||||
|
@ -292,6 +299,13 @@ EXAMPLES = '''
|
||||||
instance_name: new-database
|
instance_name: new-database
|
||||||
new_instance_name: renamed-database
|
new_instance_name: renamed-database
|
||||||
wait: yes
|
wait: yes
|
||||||
|
|
||||||
|
# Reboot an instance and wait for it to become available again
|
||||||
|
- rds
|
||||||
|
command: reboot
|
||||||
|
instance_name: database
|
||||||
|
wait: yes
|
||||||
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
@ -380,6 +394,13 @@ class RDSConnection:
|
||||||
except boto.exception.BotoServerError, e:
|
except boto.exception.BotoServerError, e:
|
||||||
raise RDSException(e)
|
raise RDSException(e)
|
||||||
|
|
||||||
|
def reboot_db_instance(self, instance_name, **params):
|
||||||
|
try:
|
||||||
|
result = self.connection.reboot_dbinstance(instance_name)
|
||||||
|
return RDSDBInstance(result)
|
||||||
|
except boto.exception.BotoServerError, e:
|
||||||
|
raise RDSException(e)
|
||||||
|
|
||||||
def restore_db_instance_from_db_snapshot(self, instance_name, snapshot, instance_type, **params):
|
def restore_db_instance_from_db_snapshot(self, instance_name, snapshot, instance_type, **params):
|
||||||
try:
|
try:
|
||||||
result = self.connection.restore_dbinstance_from_dbsnapshot(snapshot, instance_name, instance_type, **params)
|
result = self.connection.restore_dbinstance_from_dbsnapshot(snapshot, instance_name, instance_type, **params)
|
||||||
|
@ -464,6 +485,13 @@ class RDS2Connection:
|
||||||
except boto.exception.BotoServerError, e:
|
except boto.exception.BotoServerError, e:
|
||||||
raise RDSException(e)
|
raise RDSException(e)
|
||||||
|
|
||||||
|
def reboot_db_instance(self, instance_name, **params):
|
||||||
|
try:
|
||||||
|
result = self.connection.reboot_db_instance(instance_name, **params)['RebootDBInstanceResponse']['RebootDBInstanceResult']['DBInstance']
|
||||||
|
return RDS2DBInstance(result)
|
||||||
|
except boto.exception.BotoServerError, e:
|
||||||
|
raise RDSException(e)
|
||||||
|
|
||||||
def restore_db_instance_from_db_snapshot(self, instance_name, snapshot, instance_type, **params):
|
def restore_db_instance_from_db_snapshot(self, instance_name, snapshot, instance_type, **params):
|
||||||
try:
|
try:
|
||||||
result = self.connection.restore_db_instance_from_db_snapshot(instance_name, snapshot, **params)['RestoreDBInstanceFromDBSnapshotResponse']['RestoreDBInstanceFromDBSnapshotResult']['DBInstance']
|
result = self.connection.restore_db_instance_from_db_snapshot(instance_name, snapshot, **params)['RestoreDBInstanceFromDBSnapshotResponse']['RestoreDBInstanceFromDBSnapshotResult']['DBInstance']
|
||||||
|
@ -847,6 +875,31 @@ def snapshot_db_instance(module, conn):
|
||||||
module.exit_json(changed=changed, snapshot=resource.get_data())
|
module.exit_json(changed=changed, snapshot=resource.get_data())
|
||||||
|
|
||||||
|
|
||||||
|
def reboot_db_instance(module, conn):
|
||||||
|
required_vars = ['instance_name']
|
||||||
|
valid_vars = []
|
||||||
|
|
||||||
|
if has_rds2:
|
||||||
|
valid_vars.append('force_failover')
|
||||||
|
|
||||||
|
params = validate_parameters(required_vars, valid_vars, module)
|
||||||
|
instance_name = module.params.get('instance_name')
|
||||||
|
result = conn.get_db_instance(instance_name)
|
||||||
|
changed = False
|
||||||
|
try:
|
||||||
|
result = conn.reboot_db_instance(instance_name, **params)
|
||||||
|
changed = True
|
||||||
|
except RDSException, e:
|
||||||
|
module.fail_json(msg=e.message)
|
||||||
|
|
||||||
|
if module.params.get('wait'):
|
||||||
|
resource = await_resource(conn, result, 'available', module)
|
||||||
|
else:
|
||||||
|
resource = conn.get_db_instance(instance_name)
|
||||||
|
|
||||||
|
module.exit_json(changed=changed, instance=resource.get_data())
|
||||||
|
|
||||||
|
|
||||||
def restore_db_instance(module, conn):
|
def restore_db_instance(module, conn):
|
||||||
required_vars = ['instance_name', 'snapshot']
|
required_vars = ['instance_name', 'snapshot']
|
||||||
valid_vars = ['db_name', 'iops', 'license_model', 'multi_zone',
|
valid_vars = ['db_name', 'iops', 'license_model', 'multi_zone',
|
||||||
|
@ -918,6 +971,7 @@ def validate_parameters(required_vars, valid_vars, module):
|
||||||
'instance_type': 'db_instance_class',
|
'instance_type': 'db_instance_class',
|
||||||
'password': 'master_user_password',
|
'password': 'master_user_password',
|
||||||
'new_instance_name': 'new_db_instance_identifier',
|
'new_instance_name': 'new_db_instance_identifier',
|
||||||
|
'force_failover': 'force_failover',
|
||||||
}
|
}
|
||||||
if has_rds2:
|
if has_rds2:
|
||||||
optional_params.update(optional_params_rds2)
|
optional_params.update(optional_params_rds2)
|
||||||
|
@ -960,7 +1014,7 @@ def validate_parameters(required_vars, valid_vars, module):
|
||||||
def main():
|
def main():
|
||||||
argument_spec = ec2_argument_spec()
|
argument_spec = ec2_argument_spec()
|
||||||
argument_spec.update(dict(
|
argument_spec.update(dict(
|
||||||
command = dict(choices=['create', 'replicate', 'delete', 'facts', 'modify', 'promote', 'snapshot', 'restore'], required=True),
|
command = dict(choices=['create', 'replicate', 'delete', 'facts', 'modify', 'promote', 'snapshot', 'reboot', 'restore'], required=True),
|
||||||
instance_name = dict(required=False),
|
instance_name = dict(required=False),
|
||||||
source_instance = dict(required=False),
|
source_instance = dict(required=False),
|
||||||
db_engine = dict(choices=['MySQL', 'oracle-se1', 'oracle-se', 'oracle-ee', 'sqlserver-ee', 'sqlserver-se', 'sqlserver-ex', 'sqlserver-web', 'postgres'], required=False),
|
db_engine = dict(choices=['MySQL', 'oracle-se1', 'oracle-se', 'oracle-ee', 'sqlserver-ee', 'sqlserver-se', 'sqlserver-ex', 'sqlserver-web', 'postgres'], required=False),
|
||||||
|
@ -992,6 +1046,7 @@ def main():
|
||||||
tags = dict(type='dict', required=False),
|
tags = dict(type='dict', required=False),
|
||||||
publicly_accessible = dict(required=False),
|
publicly_accessible = dict(required=False),
|
||||||
character_set_name = dict(required=False),
|
character_set_name = dict(required=False),
|
||||||
|
force_failover = dict(type='bool', required=False, default=False)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -1010,6 +1065,7 @@ def main():
|
||||||
'modify': modify_db_instance,
|
'modify': modify_db_instance,
|
||||||
'promote': promote_db_instance,
|
'promote': promote_db_instance,
|
||||||
'snapshot': snapshot_db_instance,
|
'snapshot': snapshot_db_instance,
|
||||||
|
'reboot': reboot_db_instance,
|
||||||
'restore': restore_db_instance,
|
'restore': restore_db_instance,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue