library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

Create VPC Security Group

Creates a security group.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run aws.pipeline.create_vpc_security_group \
--arg 'region=<string>' \
--arg 'group_name=<string>' \
--arg 'description=<string>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = aws.pipeline.create_vpc_security_group
args = {
region = <string>
group_name = <string>
description = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
regionstringYesThe name of the Region.-
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
group_namestringYesThe name for the security group.-
descriptionstringYesA description for the security group.-
vpc_idstringNoThe ID of the VPC to associate the security group with.-

Outputs

NameDescription
group_idThe group ID of the security group.