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
e36ef4de
Commit
e36ef4de
authored
Jul 03, 2014
by
James Martin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated tag behavior.
parent
fe3f6b32
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
14 deletions
+36
-14
library/cloud/ec2_asg
+36
-14
No files found.
library/cloud/ec2_asg
View file @
e36ef4de
...
@@ -69,7 +69,7 @@ options:
...
@@ -69,7 +69,7 @@ options:
default: None
default: None
tags:
tags:
description:
description:
-
List of tag dictionaries to use. Required keys are 'key', 'value'
. Optional key is 'propagate_at_launch', which defaults to true.
-
A list of tags to add to the Auto Scale Group
. Optional key is 'propagate_at_launch', which defaults to true.
required: false
required: false
default: None
default: None
version_added: "1.7"
version_added: "1.7"
...
@@ -99,6 +99,11 @@ EXAMPLES = '''
...
@@ -99,6 +99,11 @@ EXAMPLES = '''
desired_capacity: 5
desired_capacity: 5
vpc_zone_identifier: 'subnet-abcd1234,subnet-1a2b3c4d'
vpc_zone_identifier: 'subnet-abcd1234,subnet-1a2b3c4d'
tags:
tags:
- environment: production
propagate_at_launch: no
deprecated method of expressing tags:
tags:
- key: environment
- key: environment
value: production
value: production
propagate_at_launch: no
propagate_at_launch: no
...
@@ -167,10 +172,18 @@ def create_autoscaling_group(connection, module):
...
@@ -167,10 +172,18 @@ def create_autoscaling_group(connection, module):
asg_tags
=
[]
asg_tags
=
[]
for
tag
in
set_tags
:
for
tag
in
set_tags
:
asg_tags
.
append
(
Tag
(
key
=
tag
.
get
(
'key'
),
if
tag
.
has_key
(
'key'
)
and
tag
.
has_key
(
'value'
):
# this block is to support depricated form
value
=
tag
.
get
(
'value'
),
asg_tags
.
append
(
Tag
(
key
=
tag
.
get
(
'key'
),
propagate_at_launch
=
bool
(
tag
.
get
(
'propagate_at_launch'
,
True
)),
value
=
tag
.
get
(
'value'
),
resource_id
=
group_name
))
propagate_at_launch
=
bool
(
tag
.
get
(
'propagate_at_launch'
,
True
)),
resource_id
=
group_name
))
else
:
for
k
,
v
in
tag
.
iteritems
():
if
k
!=
'propagate_at_launch'
:
asg_tags
.
append
(
Tag
(
key
=
k
,
value
=
v
,
propagate_at_launch
=
bool
(
tag
.
get
(
'propagate_at_launch'
,
True
)),
resource_id
=
group_name
))
if
not
as_groups
:
if
not
as_groups
:
if
not
vpc_zone_identifier
and
not
availability_zones
:
if
not
vpc_zone_identifier
and
not
availability_zones
:
...
@@ -209,15 +222,24 @@ def create_autoscaling_group(connection, module):
...
@@ -209,15 +222,24 @@ def create_autoscaling_group(connection, module):
existing_tags
=
as_group
.
tags
existing_tags
=
as_group
.
tags
existing_tag_map
=
dict
((
tag
.
key
,
tag
)
for
tag
in
existing_tags
)
existing_tag_map
=
dict
((
tag
.
key
,
tag
)
for
tag
in
existing_tags
)
for
tag
in
set_tags
:
for
tag
in
set_tags
:
if
'key'
not
in
tag
:
if
tag
.
has_key
(
'key'
)
and
tag
.
has_key
(
'value'
):
# this is to support deprecated method
continue
if
'key'
not
in
tag
:
if
(
not
tag
[
'key'
]
in
existing_tag_map
or
continue
existing_tag_map
[
tag
[
'key'
]]
.
value
!=
tag
[
'value'
]
or
if
(
not
tag
[
'key'
]
in
existing_tag_map
or
(
'propagate_at_launch'
in
tag
and
existing_tag_map
[
tag
[
'key'
]]
.
value
!=
tag
[
'value'
]
or
existing_tag_map
[
tag
[
'key'
]]
.
propagate_at_launch
!=
tag
[
'propagate_at_launch'
])
):
(
'propagate_at_launch'
in
tag
and
existing_tag_map
[
tag
[
'key'
]]
.
propagate_at_launch
!=
tag
[
'propagate_at_launch'
])
):
changed
=
True
changed
=
True
continue
continue
else
:
for
k
,
v
in
tag
.
iteritems
():
if
k
!=
'propagate_at_launch'
:
if
(
not
k
in
existing_tag_map
or
existing_tag_map
[
k
]
.
value
!=
v
or
(
'propagate_at_launch'
in
tag
and
existing_tag_map
[
k
]
.
propagate_at_launch
!=
tag
[
'propagate_at_launch'
])
):
changed
=
True
continue
if
changed
:
if
changed
:
connection
.
create_or_update_tags
(
asg_tags
)
connection
.
create_or_update_tags
(
asg_tags
)
...
...
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