Skip to content

Terraform AWS ALB Module: Simplify AWS Application Load Balancer setup with this reusable and customizable Terraform module.

Notifications You must be signed in to change notification settings

taydinadnan/terraform-aws-alb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Terraform AWS ALB Module

Overview

This Terraform module provisions an AWS Application Load Balancer (ALB) and related resources in a specified Virtual Private Cloud (VPC).

Features

  • Creates an ALB with a specified name.
  • Configures security groups for the ALB.
  • Sets up ALB listener and target group.
  • Allows customization of VPC ID and key name.

Usage

provider "aws" {
  region = "us-east-1"
}
 
module "alb" {
  source   = "./modules/alb"
  vpc_id   = data.aws_vpc.selected.id
  key_name = var.key-name
  subnets  = data.aws_subnets.pb-subnets.ids
}

About

Terraform AWS ALB Module: Simplify AWS Application Load Balancer setup with this reusable and customizable Terraform module.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages