library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Create ELBv2 Load Balancer

Creates a v2 load balancer (application, network or gateway).

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run aws.pipeline.create_elbv2_load_balancer \
--arg 'region=<string>' \
--arg 'name=<string>' \
--arg 'type=<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_elbv2_load_balancer
args = {
region = <string>
name = <string>
type = <string>
availability_zones = <list(string)>
}
}

Params

NameTypeRequiredDescriptionDefault
region
string
YesThe name of the Region.-
conn
connection.aws
YesName of AWS connection to use. If not provided, the default AWS connection will be used.connection.aws.default
name
string
YesThe name for the load balancer.-
type
string
YesThe type of load balancer (e.g., 'application' for Application Load Balancer, 'network' for Network Load Balancer).-
availability_zones
list(string)
YesA list of availability zones to associate with the load balancer.-

Outputs

NameDescription
load_balancersInformation about the load balancer.