library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

Create ELB Classic Load Balancer

Creates an classic load balancer.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run aws.pipeline.create_elb_classic_load_balancer \
--arg 'region=<string>' \
--arg 'name=<string>' \
--arg 'listeners=<list of map of string>' \
--arg 'availability_zones=<list of string>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = aws.pipeline.create_elb_classic_load_balancer
args = {
region = <string>
name = <string>
listeners = <list of map of string>
availability_zones = <list of string>
}
}

Params

NameTypeRequiredDescriptionDefault
regionstringYesThe name of the Region.-
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
namestringYesThe name for the load balancer.-
listenerslist of map of stringYesA list of listener configurations. Each listener configuration should include 'Protocol', 'LoadBalancerPort', 'InstanceProtocol', and 'InstancePort'.-
availability_zoneslist of stringYesA list of availability zones to associate with the load balancer.-

Outputs

NameDescription
elb_dns_nameThe DNS name of the load balancer.