library
turbot/aws
Get Involved
Version
Pipeline: Create VPC
Creates a new Virtual Private Cloud (VPC) in your AWS account.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run aws.pipeline.create_vpc \ --arg 'region=<string>' \ --arg 'cidr_block=<string>'
Use this pipeline
To call this pipeline from your pipeline, use a step:
step "pipeline" "step_name" { pipeline = aws.pipeline.create_vpc args = { region = <string> cidr_block = <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 |
cidr_block | string | Yes | The IPv4 network range for the VPC, in CIDR notation (e.g., 10.0.0.0/16). | - |
Outputs
Name | Description |
---|---|
vpc | Information about the VPC that was created. |