27 lines
1.0 KiB
Python
27 lines
1.0 KiB
Python
# Copyright (c) 2014 Thoughtworks.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either expressed or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
#This is the config file which is going to hold the values for being able to connect to the AWS Public cloud.
|
|
|
|
|
|
aws_region = "us-east-1"
|
|
aws_access_key_id = "AKIAIZJDDRNNJUWZ3LXA"
|
|
aws_secret_access_key = "FMld6m8kok9jpxBkORST5xfbZSod7mVm9ChDgttS"
|
|
|
|
aws_ami = "ami-864d84ee"
|
|
instance_type = "t2.micro"
|
|
|
|
flavor_map = {'m1.tiny': 't2.micro', 'm1.small': 't2.small', 'm1.medium': 't2.medium', 'm1.large': 'c3.xlarge',
|
|
'm1.xlarge': 'c3.2xlarge'}
|