library
turbot/aws
Get Involved
Version
Pipeline: 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(map(string))>' \ --arg 'availability_zones=<list(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(map(string))> availability_zones = <list(string)> }}
Params
Name | Type | Required | Description | Default |
---|---|---|---|---|
region | string | Yes | The name of the Region. | - |
conn | connection.aws | Yes | Name of AWS connection to use. If not provided, the default AWS connection will be used. | connection.aws.default |
name | string | Yes | The name for the load balancer. | - |
listeners | list(map(string)) | Yes | A list of listener configurations. Each listener configuration should include 'Protocol', 'LoadBalancerPort', 'InstanceProtocol', and 'InstancePort'. | - |
availability_zones | list(string) | Yes | A list of availability zones to associate with the load balancer. | - |
Outputs
Name | Description |
---|---|
elb_dns_name | The DNS name of the load balancer. |