@cfn-modules/alb

Application load balancer.

Usage no npm install needed!

<script type="module">
  import cfnModulesAlb from 'https://cdn.skypack.dev/@cfn-modules/alb';
</script>

README

Build Status NPM version

cfn-modules: ALB

Application load balancer.

Install

Install Node.js and npm first!

npm i @cfn-modules/alb

Usage

---
AWSTemplateFormatVersion: '2010-09-09'
Description: 'cfn-modules example'
Resources:
  Alb:
    Type: 'AWS::CloudFormation::Stack'
    Properties:
      Parameters:
        VpcModule: !GetAtt 'Vpc.Outputs.StackName' # required
        AlertingModule: '' # optional
        BucketModule: '' # optional
        Scheme: 'internet-facing' # optional
        IdleTimeoutInSeconds: '60' # optional
      TemplateURL: './node_modules/@cfn-modules/alb/module.yml'

Examples

Related modules

Parameters

Name Description Default Required? Allowed values
VpcModule Stack name of vpc module yes
AlertingModule Stack name of alerting module no
BucketModule Stack name of S3 bucket module no
Scheme Indicates whether the load balancer reachable from the public Internet or only from within the VPC internet-facing no [internet-facing, internal]
IdleTimeoutInSeconds The idle timeout value, in seconds 60 no 1-4000