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
88b30a74
Commit
88b30a74
authored
Apr 15, 2014
by
evanccopengeo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixing bug where if both private_ip and assign_public_p are set ansible fails out
parent
f547733b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
14 deletions
+31
-14
library/cloud/ec2
+31
-14
No files found.
library/cloud/ec2
View file @
88b30a74
...
...
@@ -814,13 +814,21 @@ def create_instances(module, ec2, override_count=None):
msg
=
"assign_public_ip only available with vpc_subnet_id"
)
else
:
interface
=
boto
.
ec2
.
networkinterface
.
NetworkInterfaceSpecification
(
subnet_id
=
vpc_subnet_id
,
groups
=
group_id
,
associate_public_ip_address
=
assign_public_ip
)
interfaces
=
boto
.
ec2
.
networkinterface
.
NetworkInterfaceCollection
(
interface
)
params
[
'network_interfaces'
]
=
interfaces
if
private_ip
:
interface
=
boto
.
ec2
.
networkinterface
.
NetworkInterfaceSpecification
(
subnet_id
=
vpc_subnet_id
,
private_ip_address
=
private_ip
,
groups
=
group_id
,
associate_public_ip_address
=
assign_public_ip
)
interfaces
=
boto
.
ec2
.
networkinterface
.
NetworkInterfaceCollection
(
interface
)
params
[
'network_interfaces'
]
=
interfaces
else
:
interface
=
boto
.
ec2
.
networkinterface
.
NetworkInterfaceSpecification
(
subnet_id
=
vpc_subnet_id
,
groups
=
group_id
,
associate_public_ip_address
=
assign_public_ip
)
interfaces
=
boto
.
ec2
.
networkinterface
.
NetworkInterfaceCollection
(
interface
)
params
[
'network_interfaces'
]
=
interfaces
else
:
params
[
'subnet_id'
]
=
vpc_subnet_id
if
vpc_subnet_id
:
...
...
@@ -842,13 +850,22 @@ def create_instances(module, ec2, override_count=None):
# check to see if we're using spot pricing first before starting instances
if
not
spot_price
:
params
.
update
(
dict
(
min_count
=
count_remaining
,
max_count
=
count_remaining
,
client_token
=
id
,
placement_group
=
placement_group
,
private_ip_address
=
private_ip
,
))
if
assign_public_ip
and
private_ip
:
params
.
update
(
dict
(
min_count
=
count_remaining
,
max_count
=
count_remaining
,
client_token
=
id
,
placement_group
=
placement_group
,
))
else
:
params
.
update
(
dict
(
min_count
=
count_remaining
,
max_count
=
count_remaining
,
client_token
=
id
,
placement_group
=
placement_group
,
private_ip_address
=
private_ip
,
))
res
=
ec2
.
run_instances
(
**
params
)
instids
=
[
i
.
id
for
i
in
res
.
instances
]
while
True
:
...
...
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