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
e40fd9bb
Commit
e40fd9bb
authored
Mar 11, 2014
by
Richard C Isaacson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bulk update of choices=BOOLEANS to type='bool'
parent
f1301f6f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
library/cloud/ec2_vpc
+4
-4
No files found.
library/cloud/ec2_vpc
View file @
e40fd9bb
...
...
@@ -491,13 +491,13 @@ def main():
argument_spec
.
update
(
dict
(
cidr_block
=
dict
(),
instance_tenancy
=
dict
(
choices
=
[
'default'
,
'dedicated'
],
default
=
'default'
),
wait
=
dict
(
choices
=
BOOLEANS
,
default
=
False
),
wait
=
dict
(
type
=
'bool'
,
default
=
False
),
wait_timeout
=
dict
(
default
=
300
),
dns_support
=
dict
(
choices
=
BOOLEANS
,
default
=
True
),
dns_hostnames
=
dict
(
choices
=
BOOLEANS
,
default
=
True
),
dns_support
=
dict
(
type
=
'bool'
,
default
=
True
),
dns_hostnames
=
dict
(
type
=
'bool'
,
default
=
True
),
subnets
=
dict
(
type
=
'list'
),
vpc_id
=
dict
(),
internet_gateway
=
dict
(
choices
=
BOOLEANS
,
default
=
False
),
internet_gateway
=
dict
(
type
=
'bool'
,
default
=
False
),
route_tables
=
dict
(
type
=
'list'
),
state
=
dict
(
choices
=
[
'present'
,
'absent'
],
default
=
'present'
),
)
...
...
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