library
turbot/aws
Get Involved
Version
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
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. | - |
type | string | Yes | The type of load balancer (e.g., 'application' for Application Load Balancer, 'network' for Network Load Balancer). | - |
availability_zones | list(string) | Yes | A list of availability zones to associate with the load balancer. | - |
Outputs
Name | Description |
---|---|
load_balancers | Information about the load balancer. |