Commit 4a9e8ebb by Han Su Kim

Merge pull request #1000 from edx/han/ansible-provision

changed default instance to m3.medium
parents c53542d6 11667ac3
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
# Ansible provisioning wrapper script that # Ansible provisioning wrapper script that
# assumes the following parameters set # assumes the following parameters set
# as environment variables # as environment variables
# #
# - github_username # - github_username
# - server_type # - server_type
# - instance_type # - instance_type
...@@ -72,7 +72,7 @@ if [[ -z $ami ]]; then ...@@ -72,7 +72,7 @@ if [[ -z $ami ]]; then
fi fi
if [[ -z $instance_type ]]; then if [[ -z $instance_type ]]; then
instance_type="m1.medium" instance_type="m3.medium"
fi fi
deploy_host="${dns_name}.${dns_zone}" deploy_host="${dns_name}.${dns_zone}"
...@@ -118,9 +118,9 @@ keypair: $keypair ...@@ -118,9 +118,9 @@ keypair: $keypair
instance_type: $instance_type instance_type: $instance_type
security_group: $security_group security_group: $security_group
ami: $ami ami: $ami
region: $region region: $region
zone: $zone zone: $zone
instance_tags: instance_tags:
environment: $environment environment: $environment
github_username: $github_username github_username: $github_username
Name: $name_tag Name: $name_tag
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment