Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 896 Bytes

README.md

File metadata and controls

39 lines (27 loc) · 896 Bytes

AWS ELB Terraform module

Terraform module which creates ELB resources on AWS.

These types of resources are supported:

Usage

module "elb" {
  source = "github.com/cloud3rsio/terraform-aws-elb"

  name             = "simple-elb"
  vpc_id           = "vpc-0000000"
  subnets          = ["subnet-00000000", "subnet-11111111", "subnet-22222222"]
  target_group_arn = "arn:aws:elasticloadbalancing:ap-northeast-1:00000000:targetgroup/targetgroup-name/000000000000"

  enabled_https   = true
  acm_domain_name = "example.cloud3rs.io"

  tags = {
    Environment = "development"
  }
}

Examples

License

Apache 2 Licensed. See LICENSE for full details.