Skip to content

fierceventures/terraform-elastic-beanstalk-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 

Repository files navigation

AWS elastic beanstalk application

This module can be used to deploy an AWS elastic beanstalk application and environment.

Module Input Variables

  • name - Unique name for application & environment
  • env
  • vpc_id
  • cert_arn
  • public_subnet_id
  • instance_type
  • delete_logs_on_terminate
  • key_pair_name

Usage

module "elastic-beanstalk-java" {
  source = "github.com/fierceventures/terraform-elastic-beanstalk-java"
  name = "${var.namespace}-server"
  env = "${terraform.workspace}"
  vpc_id = "${module.vpc.id}"
  cert_arn = "${module.backend_cert.arn}"
  public_subnet_id = "${module.public_subnet.id}"
  instance_type = "${var.server_instance_type}"
  key_pair_name = "${aws_key_pair.key_pair.key_name}"
}

Outputs

  • cname - cname/url
  • eb_profile_name - Instance profile name
  • eb_role_id
  • eb_role_name

Author

Created and maintained by Fierce Ventures

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages