library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

Put S3 Bucket Encryption

Configures encryption settings for an Amazon S3 bucket.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run aws.pipeline.put_s3_bucket_encryption \
--arg 'bucket=<string>' \
--arg 'sse_algorithm=<string>' \
--arg 'bucket_key_enabled=<bool>' \
--arg 'region=<string>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = aws.pipeline.put_s3_bucket_encryption
args = {
bucket = <string>
sse_algorithm = <string>
bucket_key_enabled = <bool>
region = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
bucketstringYesThe name of the S3 bucket.-
sse_algorithmstringYesServer-side encryption algorithm to use for the default encryption.-
kms_master_key_idstringNoAmazon Web Services Key Management Service (KMS) customer Amazon Web Services KMS key ID to use for the default encryption.-
bucket_key_enabledboolYesSpecifies whether Amazon S3 should use an S3 Bucket Key with server-side encryption using KMS (SSE-KMS) for new objects in the bucket.-
regionstringYesThe name of the Region.-
credstringYesName for credentials to use. If not provided, the default credentials will be used.default

Outputs

This pipeline has no outputs.