richardj-bsquare / terraform-aws-elastic-beanstalk-environment

Terraform module to provision an AWS Elastic Beanstalk Environment

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cloud Posse

terraform-aws-elastic-beanstalk-environment

Build Status Latest Release Slack Community

Terraform module to provision AWS Elastic Beanstalk environment


This project is part of our comprehensive "SweetOps" approach towards DevOps.

It's 100% Open Source and licensed under the APACHE2.

Makefile Targets

Available targets:

  help                                This help screen
  help/all                            Display help for all targets
  lint                                Lint terraform code

Inputs

Name Description Type Default Required
alb_zone_id ALB zone id string <map> no
app EBS application name string - yes
associate_public_ip_address Specifies whether to launch instances in your VPC with public IP addresses. string false no
attributes Additional attributes (e.g. policy or role) list <list> no
autoscale_lower_bound Minimum level of autoscale metric to add instance string 20 no
autoscale_max Maximum instances in charge string 3 no
autoscale_min Minumum instances in charge string 2 no
autoscale_upper_bound Maximum level of autoscale metric to remove instance string 80 no
availability_zones Choose the number of AZs for your instances string Any 2 no
config_document A JSON document describing the environment and instance metrics to publish to CloudWatch. string { "CloudWatchMetrics": {}, "Version": 1} no
config_source S3 source for config string `` no
delimiter Delimiter to be used between name, namespace, stage, etc. string - no
env_default_key Default ENV variable key for Elastic Beanstalk aws:elasticbeanstalk:application:environment setting string DEFAULT_ENV_%d no
env_default_value Default ENV variable value for Elastic Beanstalk aws:elasticbeanstalk:application:environment setting string UNSET no
env_vars Map of custom ENV variables to be provided to the Jenkins application running on Elastic Beanstalk, e.g. env_vars = { JENKINS_USER = 'admin' JENKINS_PASS = 'xxxxxx' } map <map> no
healthcheck_url Application Health Check URL. Elastic Beanstalk will call this URL to check the health of the application running on EC2 instances string /healthcheck no
http_listener_enabled Enable port 80 (http) string false no
instance_refresh_enabled Enable weekly instance replacement. string true no
instance_type Instances type string t2.micro no
keypair Name of SSH key that will be deployed on Elastic Beanstalk and DataPipeline instance. The key should be present in AWS string - yes
loadbalancer_certificate_arn Load Balancer SSL certificate ARN. The certificate must be present in AWS Certificate Manager string `` no
loadbalancer_type Load Balancer type, e.g. 'application' or 'classic' string classic no
name Solution name, e.g. 'app' or 'jenkins' string app no
namespace Namespace, which could be your organization name, e.g. 'cp' or 'cloudposse' string global no
notification_endpoint Notification endpoint string `` no
notification_protocol Notification protocol string email no
notification_topic_arn Notification topic arn string `` no
notification_topic_name Notification topic name string `` no
preferred_start_time Configure a maintenance window for managed actions in UTC string Sun:10:00 no
private_subnets List of private subnets to place EC2 instances list - yes
public_subnets List of public subnets to place Elastic Load Balancer list - yes
rolling_update_type Set it to Immutable to apply the configuration change to a fresh group of instances string Health no
root_volume_size The size of the EBS root volume string 8 no
root_volume_type The type of the EBS root volume string gp2 no
security_groups List of security groups to be allowed to connect to the EC2 instances list - yes
solution_stack_name Elastic Beanstalk stack, e.g. Docker, Go, Node, Java, IIS. Read more string `` no
ssh_listener_enabled Enable ssh port string false no
ssh_listener_port SSH port string 22 no
ssh_source_restriction Used to lock down SSH access to the EC2 instances. string 0.0.0.0/0 no
stage Stage, e.g. 'prod', 'staging', 'dev', or 'test' string default no
tags Additional tags (e.g. map('BusinessUnit,XYZ) map <map> no
tier Elastic Beanstalk Environment tier, e.g. ('WebServer', 'Worker') string WebServer no
update_level The highest level of update to apply with managed platform updates string minor no
updating_max_batch Maximum count of instances up during update string 1 no
updating_min_in_service Minimum count of instances up during update string 1 no
version_label Elastic Beanstalk Application version for deploy string `` no
vpc_id ID of the VPC in which to provision the AWS resources string - yes
wait_for_ready_timeout string 20m no
zone_id Route53 parent zone ID. The module will create sub-domain DNS records in the parent zone for the EB environment string `` no

Outputs

Name Description
ec2_instance_profile_role_name Instance IAM role name
elb_dns_name ELB technical host
elb_zone_id ELB zone id
host DNS hostname
name Name
security_group_id Security group id

Related Projects

Check out these related projects.

Help

Got a question?

File a GitHub issue, send us an email or join our Slack Community.

Commerical Support

Work directly with our team of DevOps experts via email, slack, and video conferencing.

We provide commercial support for all of our Open Source projects. As a Dedicated Support customer, you have access to our team of subject matter experts at a fraction of the cost of a fulltime engineer.

E-Mail

  • Questions. We'll use a Shared Slack channel between your team and ours.
  • Troubleshooting. We'll help you triage why things aren't working.
  • Code Reviews. We'll review your Pull Requests and provide constructive feedback.
  • Bug Fixes. We'll rapidly work to fix any bugs in our projects.
  • Build New Terraform Modules. We'll develop original modules to provision infrastructure.
  • Cloud Architecture. We'll assist with your cloud strategy and design.
  • Implementation. We'll provide hands on support to implement our reference architectures.

Community Forum

Get access to our Open Source Community Forum on Slack. It's FREE to join for everyone! Our "SweetOps" community is where you get to talk with others who share a similar vision for how to rollout and manage infrastructure. This is the best place to talk shop, ask questions, solicit feedback, and work together as a community to build sweet infrastructure.

Contributing

Bug Reports & Feature Requests

Please use the issue tracker to report any bugs or file feature requests.

Developing

If you are interested in being a contributor and want to get involved in developing this project or help out with our other projects, we would love to hear from you! Shoot us an email.

In general, PRs are welcome. We follow the typical "fork-and-pull" Git workflow.

  1. Fork the repo on GitHub
  2. Clone the project to your own machine
  3. Commit changes to your own branch
  4. Push your work back up to your fork
  5. Submit a Pull Request so that we can review your changes

NOTE: Be sure to merge the latest changes from "upstream" before making a pull request!

Copyright

Copyright © 2017-2018 Cloud Posse, LLC

License

License

See LICENSE for full details.

Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements.  See the NOTICE file
distributed with this work for additional information
regarding copyright ownership.  The ASF licenses this file
to you 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

  https://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 express or implied.  See the License for the
specific language governing permissions and limitations
under the License.

Trademarks

All other trademarks referenced herein are the property of their respective owners.

About

This project is maintained and funded by Cloud Posse, LLC. Like it? Please let us know at hello@cloudposse.com

Cloud Posse

We're a DevOps Professional Services company based in Los Angeles, CA. We love Open Source Software!

We offer paid support on all of our projects.

Check out our other projects, apply for a job, or hire us to help with your cloud strategy and implementation.

Contributors

Igor Rodionov
Igor Rodionov
Andriy Knysh
Andriy Knysh
Guillaume Delacour
Guillaume Delacour
Viktor Erpylev
Viktor Erpylev
Lucas Pearson
Lucas Pearson

About

Terraform module to provision an AWS Elastic Beanstalk Environment

License:Apache License 2.0


Languages

Language:HCL 99.1%Language:Makefile 0.9%