Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
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
configuration
Commits
4cb25800
Commit
4cb25800
authored
Oct 09, 2013
by
Joe Blaylock
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #324 from edx/sef/add-inifile-to-ec2.py-again
re-apply ec2.py fixes for inifile
parents
adce29d5
858b0b6f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
playbooks/ec2.py
+6
-2
playbooks/edx-west/ec2.ini
+2
-0
No files found.
playbooks/ec2.py
View file @
4cb25800
...
...
@@ -137,8 +137,8 @@ class Ec2Inventory(object):
self
.
index
=
{}
# Read settings and parse CLI arguments
self
.
read_settings
()
self
.
parse_cli_args
()
self
.
read_settings
()
# Cache
if
self
.
args
.
refresh_cache
:
...
...
@@ -177,7 +177,7 @@ class Ec2Inventory(object):
''' Reads the settings from the ec2.ini file '''
config
=
ConfigParser
.
SafeConfigParser
()
config
.
read
(
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
+
'/ec2.ini'
)
config
.
read
(
self
.
args
.
inifile
)
# is eucalyptus?
self
.
eucalyptus_host
=
None
...
...
@@ -230,6 +230,10 @@ class Ec2Inventory(object):
help
=
'Get all the variables about a specific instance'
)
parser
.
add_argument
(
'--refresh-cache'
,
action
=
'store_true'
,
default
=
False
,
help
=
'Force refresh of cache by making API requests to EC2 (default: False - use cache files)'
)
default_inifile
=
os
.
environ
.
get
(
"ANSIBLE_EC2_INI"
,
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
+
'/ec2.ini'
)
parser
.
add_argument
(
'--inifile'
,
dest
=
'inifile'
,
help
=
'Path to init script to use'
,
default
=
default_inifile
)
self
.
args
=
parser
.
parse_args
()
...
...
playbooks/edx-west/ec2.ini
View file @
4cb25800
[ec2]
regions
=
us-west-1
regions_exclude
=
us-gov-west-1
destination_variable
=
public_dns_name
vpc_destination_variable
=
private_dns_name
cache_path
=
/tmp
cache_max_age
=
300
route53
=
False
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