library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

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

NameTypeRequiredDescriptionDefault
regionstringYesThe name of the Region.-
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
cidr_blockstringYesThe IPv4 network range for the VPC, in CIDR notation (e.g., 10.0.0.0/16).-

Outputs

NameDescription
vpcInformation about the VPC that was created.