fedimg: Add the missing quotes to the config file

Signed-off-by: Sayan Chowdhury <sayan.chowdhury2012@gmail.com>
This commit is contained in:
Sayan Chowdhury 2018-03-16 18:46:56 +05:30 committed by Sayan Chowdhury
parent fa5afee24b
commit 08e1d3c5b3

View file

@ -7,11 +7,11 @@ active_services = ['aws']
[aws] [aws]
root_volume_size = {{aws_volume_size}} root_volume_size = {{aws_volume_size}}
{% if env == 'staging' %} {% if env == 'staging' %}
access_id = {{fedimg_aws_stg_access_id}} access_id = '{{fedimg_aws_stg_access_id}}'
secret_key = {{fedimg_aws_stg_secret_key}} secret_key = '{{fedimg_aws_stg_secret_key}}'
{% else %} {% else %}
access_id = {{fedimg_aws_prod_access_id}} access_id = '{{fedimg_aws_prod_access_id}}'
secret_key = {{fedimg_aws_prod_secret_key}} secret_key = '{{fedimg_aws_prod_secret_key}}'
{% endif %} {% endif %}
base_region = 'us-east-1' base_region = 'us-east-1'
regions = ['ap-northeast-2', 'us-east-2', 'ap-southeast-1', 'ap-southeast-2', regions = ['ap-northeast-2', 'us-east-2', 'ap-southeast-1', 'ap-southeast-2',