diff options
-rw-r--r-- | deploy/settings.yml.example | 80 |
1 files changed, 40 insertions, 40 deletions
diff --git a/deploy/settings.yml.example b/deploy/settings.yml.example index fd86336..c07a0e4 100644 --- a/deploy/settings.yml.example +++ b/deploy/settings.yml.example @@ -1,17 +1,17 @@ deploy: - aws_access_key: ********** - aws_secret_key: ********** - bucket: example-ebs-archives - region: us-east-1 # http://docs.aws.amazon.com/general/latest/gr/rande.html#ec2_region + aws_access_key: '**********' + aws_secret_key: '**********' + bucket: 'example-ebs-archives' + region: 'us-east-1' # http://docs.aws.amazon.com/general/latest/gr/rande.html#ec2_region app: - name: omaha-server - description: Omaha Server + name: 'omaha-server' + description: 'Omaha Server' - key_name: omaha_server + key_name: 'omaha_server' solution_stack_name: '64bit Amazon Linux 2015.03 v1.4.3 running Docker 1.6.2' # optional default: '64bit Amazon Linux 2015.03 v1.4.3 running Docker 1.6.2' - InstanceType: t2.large # optional default: t2.small http://aws.amazon.com/ec2/instance-types/ + InstanceType: 't2.large' # optional default: t2.small http://aws.amazon.com/ec2/instance-types/ autoscaling: # optional default: min=1 max=10 min: 4 max: 20 @@ -21,44 +21,44 @@ app: omaha-server-private: option_settings: # Configuration Options http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options.html 'aws:autoscaling:launchconfiguration': - IamInstanceProfile: omaha-public - SecurityGroups: omaha-server,omaha-server-private + IamInstanceProfile: 'omaha-public' + SecurityGroups: 'omaha-server,omaha-server-private' # If you use Amazon VPC with Elastic Beanstalk so that your instances are launched within a virtual private cloud (VPC), specify security group IDs instead of a security group name. 'aws:ec2:vpc': - VPCId: vpc-bb6b9fdf - Subnets: subnet-e386d5ba + VPCId: 'vpc-bb6b9fdf' + Subnets: 'subnet-e386d5ba' AssociatePublicIpAddress: 'true' - + environment: - OMAHA_SERVER_PRIVATE: true - SECRET_KEY: ********** - DB_HOST: postgres.example.com - DB_USER: omaha - DB_NAME: omaha - DB_PASSWORD: ********** - AWS_STORAGE_BUCKET_NAME: omaha-server - RAVEN_DNS: http://b3615b99118949dbae3c7d06e93fa74c:b8f1c35d08ef4bcaa6810b4d4cdd6fc0@sentry.example.com/2 - RAVEN_DSN_STACKTRACE: http://637c17c832f44663b381916d4e0cb34d:9df83034cdfb400f9ce7d47ae4a0cc0b@sentry.example.com/5 - REDIS_HOST: redis.example.com - DB_PUBLIC_USER: omaha_public - DB_PUBLIC_PASSWORD: omaha_public_password - AWS_ROLE: omaha-private + OMAHA_SERVER_PRIVATE: 'true' + SECRET_KEY: '**********' + DB_HOST: 'postgres.example.com' + DB_USER: 'omaha' + DB_NAME: 'omaha' + DB_PASSWORD: '**********' + AWS_STORAGE_BUCKET_NAME: 'omaha-server' + RAVEN_DNS: 'http://b3615b99118949dbae3c7d06e93fa74c:b8f1c35d08ef4bcaa6810b4d4cdd6fc0@sentry.example.com/2' + RAVEN_DSN_STACKTRACE: 'http://637c17c832f44663b381916d4e0cb34d:9df83034cdfb400f9ce7d47ae4a0cc0b@sentry.example.com/5' + REDIS_HOST: 'redis.example.com' + DB_PUBLIC_USER: 'omaha_public' + DB_PUBLIC_PASSWORD: 'omaha_public_password' + AWS_ROLE: 'omaha-private' omaha-server-public: option_settings: 'aws:autoscaling:launchconfiguration': - IamInstanceProfile: omaha-public - SecurityGroups: omaha-server,omaha-server-public + IamInstanceProfile: 'omaha-public' + SecurityGroups: 'omaha-server,omaha-server-public' environment: - OMAHA_SERVER_PRIVATE: false - SECRET_KEY: ********** - DB_HOST: postgres.example.com - DB_USER: omaha_public - DB_NAME: omaha - DB_PASSWORD: omaha_public_password - AWS_STORAGE_BUCKET_NAME: omaha-server - RAVEN_DNS: http://b3615b99118949dbae3c7d06e93fa74c:b8f1c35d08ef4bcaa6810b4d4cdd6fc0@sentry.example.com/2 - RAVEN_DSN_STACKTRACE: http://637c17c832f44663b381916d4e0cb34d:9df83034cdfb400f9ce7d47ae4a0cc0b@sentry.example.com/5 - REDIS_HOST: redis.example.com - AWS_ROLE: omaha-public - DJANGO_SETTINGS_MODULE: omaha_server.settings_prod + OMAHA_SERVER_PRIVATE: 'false' + SECRET_KEY: '**********' + DB_HOST: 'postgres.example.com' + DB_USER: 'omaha_public' + DB_NAME: 'omaha' + DB_PASSWORD: 'omaha_public_password' + AWS_STORAGE_BUCKET_NAME: 'omaha-server' + RAVEN_DNS: 'http://b3615b99118949dbae3c7d06e93fa74c:b8f1c35d08ef4bcaa6810b4d4cdd6fc0@sentry.example.com/2' + RAVEN_DSN_STACKTRACE: 'http://637c17c832f44663b381916d4e0cb34d:9df83034cdfb400f9ce7d47ae4a0cc0b@sentry.example.com/5' + REDIS_HOST: 'redis.example.com' + AWS_ROLE: 'omaha-public' + DJANGO_SETTINGS_MODULE: 'omaha_server.settings_prod' |