library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

Create CloudWatch Log Group

Creates a new CloudWatch log group.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run aws.pipeline.create_cloudwatch_log_group \
--arg 'region=<string>' \
--arg 'log_group_name=<string>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = aws.pipeline.create_cloudwatch_log_group
args = {
region = <string>
log_group_name = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
regionstringYesThe name of the Region.-
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
log_group_namestringYesThe name of the CloudWatch log group to be created.-
retention_daysnumberNoThe retention period in days for the log group.-

Outputs

NameDescription
log_group_creationConfirmation of the CloudWatch log group creation.