Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
c900254e
Commit
c900254e
authored
Mar 04, 2014
by
Hagai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ec2_snapshot: Add `wait' and `snapshot_tags' parameters, return more
info on success
parent
21054798
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletions
+13
-1
library/cloud/ec2_snapshot
+13
-1
No files found.
library/cloud/ec2_snapshot
View file @
c900254e
...
@@ -124,6 +124,8 @@ def main():
...
@@ -124,6 +124,8 @@ def main():
ec2_url
=
dict
(),
ec2_url
=
dict
(),
ec2_secret_key
=
dict
(
aliases
=
[
'aws_secret_key'
,
'secret_key'
],
no_log
=
True
),
ec2_secret_key
=
dict
(
aliases
=
[
'aws_secret_key'
,
'secret_key'
],
no_log
=
True
),
ec2_access_key
=
dict
(
aliases
=
[
'aws_access_key'
,
'access_key'
]),
ec2_access_key
=
dict
(
aliases
=
[
'aws_access_key'
,
'access_key'
]),
wait
=
dict
(
choices
=
BOOLEANS
,
default
=
'true'
),
snapshot_tags
=
dict
(
type
=
'dict'
,
default
=
dict
()),
)
)
)
)
...
@@ -131,6 +133,8 @@ def main():
...
@@ -131,6 +133,8 @@ def main():
description
=
module
.
params
.
get
(
'description'
)
description
=
module
.
params
.
get
(
'description'
)
instance_id
=
module
.
params
.
get
(
'instance_id'
)
instance_id
=
module
.
params
.
get
(
'instance_id'
)
device_name
=
module
.
params
.
get
(
'device_name'
)
device_name
=
module
.
params
.
get
(
'device_name'
)
wait
=
module
.
params
.
get
(
'wait'
)
snapshot_tags
=
module
.
params
.
get
(
'snapshot_tags'
)
if
not
volume_id
and
not
instance_id
or
volume_id
and
instance_id
:
if
not
volume_id
and
not
instance_id
or
volume_id
and
instance_id
:
module
.
fail_json
(
'One and only one of volume_id or instance_id must be specified'
)
module
.
fail_json
(
'One and only one of volume_id or instance_id must be specified'
)
...
@@ -150,10 +154,18 @@ def main():
...
@@ -150,10 +154,18 @@ def main():
try
:
try
:
snapshot
=
ec2
.
create_snapshot
(
volume_id
,
description
=
description
)
snapshot
=
ec2
.
create_snapshot
(
volume_id
,
description
=
description
)
if
wait
:
snapshot
.
update
()
while
snapshot
.
status
!=
'completed'
:
time
.
sleep
(
3
)
snapshot
.
update
()
for
k
,
v
in
snapshot_tags
.
items
():
snapshot
.
add_tag
(
k
,
v
)
except
boto
.
exception
.
BotoServerError
,
e
:
except
boto
.
exception
.
BotoServerError
,
e
:
module
.
fail_json
(
msg
=
"
%
s:
%
s"
%
(
e
.
error_code
,
e
.
error_message
))
module
.
fail_json
(
msg
=
"
%
s:
%
s"
%
(
e
.
error_code
,
e
.
error_message
))
module
.
exit_json
(
changed
=
True
,
snapshot_id
=
snapshot
.
id
)
module
.
exit_json
(
changed
=
True
,
snapshot_id
=
snapshot
.
id
,
volume_id
=
snapshot
.
volume_id
,
volume_size
=
snapshot
.
volume_size
,
tags
=
snapshot
.
tags
.
copy
())
# import module snippets
# import module snippets
from
ansible.module_utils.basic
import
*
from
ansible.module_utils.basic
import
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment