library
turbot/aws
Get Involved
Version
Pipeline: Modify Client VPN Endpoint
Modifies the connection log settings of a specified AWS Client VPN endpoint.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run aws.pipeline.modify_client_vpn_endpoint \ --arg 'region=<string>' \ --arg 'client_vpn_endpoint_id=<string>'
Use this pipeline
To call this pipeline from your pipeline, use a step:
step "pipeline" "step_name" { pipeline = aws.pipeline.modify_client_vpn_endpoint args = { region = <string> client_vpn_endpoint_id = <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 |
client_vpn_endpoint_id | string | Yes | The ID of the Client VPN endpoint to modify. | - |
enable_logging | bool | Yes | Enable or disable logging of VPN connections. | true |
cloudwatch_log_group | string | No | The name of the CloudWatch Log Group to log VPN connections. | - |
cloudwatch_log_stream | string | No | The name of the CloudWatch Log Stream within the Log Group. | - |
Outputs
Name | Description |
---|---|
vpn_modification | Details about the VPN endpoint modification. |