library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: 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
region
string
YesThe name of the Region.-
conn
connection.aws
YesName of AWS connection to use. If not provided, the default AWS connection will be used.connection.aws.default
group_name
string
YesThe name for the security group.-
description
string
YesA description for the security group.-
vpc_id
string
NoThe ID of the VPC to associate the security group with.-

Outputs

NameDescription
group_idThe group ID of the security group.

Tags

recommended = true