library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

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 'name=<string>' \
--arg 'type=<string>' \
--arg 'availability_zones=<list of string>' \
--arg 'region=<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 = {
name = <string>
type = <string>
availability_zones = <list of string>
region = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
namestringYesThe name for the load balancer.-
typestringYesThe type of load balancer (e.g., 'application' for Application Load Balancer, 'network' for Network Load Balancer).-
availability_zoneslist of stringYesA list of availability zones to associate with the load balancer.-
regionstringYesThe name of the Region.-

Outputs

NameDescription
load_balancersInformation about the load balancer.