S3 Bucket
Deploy an S3 bucket for data storage, with support for access logging, versioning and replication.
View on GitHubReference
- Inputs
- Outputs
access_logging_bucket
— The S3 bucket where access logs for this bucket should be stored. Set to null to disable access logging.
access_logging_bucket_ownership
— Configure who will be the default owner of objects uploaded to the access logs S3 bucket: must be one of BucketOwnerPreferred (the bucket owner owns objects), ObjectWriter (the writer of each object owns that object), or null (don't configure this feature). Note that this setting only takes effect if the object is uploaded with the bucket-owner-full-control canned ACL. See https://docs.aws.amazon.com/AmazonS3/latest/dev/about-object-ownership.html for more info.
access_logging_bucket_policy_statements
— The IAM policy to apply to the S3 bucket used to store access logs. You can use this to grant read/write access. This should be a map, where each key is a unique statement ID (SID), and each value is an object that contains the parameters defined in the comment above.
access_logging_prefix
— A prefix (i.e., folder path) to use for all access logs stored inaccess_logging_bucket
. Only used ifaccess_logging_bucket
is specified.
bucket_kms_key_arn
— Optional KMS key to use for encrypting data in the S3 bucket. If null, data in S3 will be encrypted using the default aws/s3 key. If provided, the key policy of the provided key must allow whoever is writing to this bucket to use that key.
bucket_ownership
— Configure who will be the default owner of objects uploaded to this S3 bucket: must be one of BucketOwnerPreferred (the bucket owner owns objects), ObjectWriter (the writer of each object owns that object), or null (don't configure this feature). Note that this setting only takes effect if the object is uploaded with the bucket-owner-full-control canned ACL. See https://docs.aws.amazon.com/AmazonS3/latest/dev/about-object-ownership.html for more info.
bucket_policy_statements
— The IAM policy to apply to this S3 bucket. You can use this to grant read/write access. This should be a map, where each key is a unique statement ID (SID), and each value is an object that contains the parameters defined in the comment above.
bucket_sse_algorithm
— The server-side encryption algorithm to use on the bucket. Valid values are AES256 and aws:kms. To disable server-side encryption, setenable_sse
to false.
cors_rules
— CORS rules to set on this S3 bucket
enable_sse
— Set to true to enable server-side encryption for this bucket. You can control the algorithm usingsse_algorithm
.
enable_versioning
— Set to true to enable versioning for this bucket. If enabled, instead of overriding objects, the S3 bucket will always create a new version of each object, so all the old values are retained.
force_destroy_logs
— If set to true, when you run 'terraform destroy', delete all objects from the logs bucket so that the bucket can be destroyed without error. Warning: these objects are not recoverable so only use this if you're absolutely sure you want to permanently delete everything!
force_destroy_primary
— If set to true, when you run 'terraform destroy', delete all objects from the primary bucket so that the bucket can be destroyed without error. Warning: these objects are not recoverable so only use this if you're absolutely sure you want to permanently delete everything!
force_destroy_replica
— If set to true, when you run 'terraform destroy', delete all objects from the replica bucket so that the bucket can be destroyed without error. Warning: these objects are not recoverable so only use this if you're absolutely sure you want to permanently delete everything!
mfa_delete
— Enable MFA delete for either 'Change the versioning state of your bucket' or 'Permanently delete an object version'. This cannot be used to toggle this setting but is available to allow managed buckets to reflect the state in AWS. Only used ifenable_versioning
is true. For instructions on how to enable MFA Delete, check out the README from the terraform-aws-security/private-s3-bucket module.
primary_bucket
— What to name the S3 bucket. Note that S3 bucket names must be globally unique across all AWS users!
replica_bucket
— The S3 bucket that will be the replica of this bucket. Set to null to disable replication.
replica_bucket_already_exists
— If set to true, replica bucket will be expected to already exist.
replica_bucket_ownership
— Configure who will be the default owner of objects uploaded to the replica S3 bucket: must be one of BucketOwnerPreferred (the bucket owner owns objects), ObjectWriter (the writer of each object owns that object), or null (don't configure this feature). Note that this setting only takes effect if the object is uploaded with the bucket-owner-full-control canned ACL. See https://docs.aws.amazon.com/AmazonS3/latest/dev/about-object-ownership.html for more info.
replica_bucket_policy_statements
— The IAM policy to apply to the replica S3 bucket. You can use this to grant read/write access. This should be a map, where each key is a unique statement ID (SID), and each value is an object that contains the parameters defined in the comment above.
replica_enable_sse
— Set to true to enable server-side encryption for the replica bucket. You can control the algorithm usingreplica_sse_algorithm
.
replica_region
— The AWS region for the replica bucket.
replica_sse_algorithm
— The server-side encryption algorithm to use on the replica bucket. Valid values are AES256 and aws:kms. To disable server-side encryption, setreplica_enable_sse
to false.
replication_role
— The ARN of the IAM role for Amazon S3 to assume when replicating objects. Only used ifreplication_bucket
is specified.
replication_rules
— The rules for managing replication. Only used ifreplication_bucket
is specified. This should be a map, where the key is a unique ID for each replication rule and the value is an object of the form explained in a comment above.
tags
— A map of tags to apply to the S3 Bucket. These tags will also be applied to the access logging and replica buckets (if any). The key is the tag name and the value is the tag value.
access_logging_bucket_name
— The name of the access logging S3 bucket.
hosted_zone_id
— The Route 53 Hosted Zone ID for this bucket's region.
primary_bucket_arn
— The ARN of the S3 bucket.
primary_bucket_domain_name
— The bucket domain name. Will be of format bucketname.s3.amazonaws.com.
primary_bucket_name
— The name of the primary S3 bucket.
primary_bucket_regional_domain_name
— The bucket region-specific domain name. The bucket domain name including the region name, please refer here for format. Note: The AWS CloudFront allows specifying S3 region-specific endpoint when creating S3 origin, it will prevent redirect issues from CloudFront to S3 Origin URL.
replica_bucket_name
— The name of the replica S3 bucket.