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
5b4cf916
Commit
5b4cf916
authored
Aug 20, 2014
by
James Cammarata
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #8686 from psa/asg-properties
asg-properties Get all the properties from ASG's
parents
a1f09bd8
09979ac2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
library/cloud/ec2_asg
+4
-3
No files found.
library/cloud/ec2_asg
View file @
5b4cf916
...
...
@@ -125,9 +125,10 @@ except ImportError:
print
"failed=True msg='boto required for this module'"
sys
.
exit
(
1
)
ASG_ATTRIBUTES
=
(
'launch_config_name'
,
'max_size'
,
'min_size'
,
'desired_capacity'
,
'vpc_zone_identifier'
,
'availability_zones'
,
'health_check_period'
,
'health_check_type'
)
ASG_ATTRIBUTES
=
(
'availability_zones'
,
'default_cooldown'
,
'desired_capacity'
,
'health_check_period'
,
'health_check_type'
,
'launch_config_name'
,
'load_balancers'
,
'max_size'
,
'min_size'
,
'name'
,
'placement_group'
,
'tags'
,
'termination_policies'
,
'vpc_zone_identifier'
)
def
enforce_required_arguments
(
module
):
''' As many arguments are not required for autoscale group deletion
...
...
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