library
turbot/aws
Get Involved
Version
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
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 |
group_name | string | Yes | The name for the security group. | - |
description | string | Yes | A description for the security group. | - |
vpc_id | string | No | The ID of the VPC to associate the security group with. | - |
Outputs
Name | Description |
---|---|
group_id | The group ID of the security group. |
Tags
recommended = true