Difference between revisions of "Terraform resource: aws s3 object"
Jump to navigation
Jump to search
(6 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | + | ||
[[aws_s3_object]] | [[aws_s3_object]] | ||
− | * https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ | + | * https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_object |
+ | |||
+ | == Official example == | ||
+ | |||
+ | Upload a file: | ||
+ | resource "aws_s3_object" "object" { | ||
+ | bucket = "your_bucket_name" | ||
+ | key = "new_object_key" | ||
+ | source = "path/to/file" | ||
+ | |||
+ | [[etag]] = [[filemd5]]("path/to/file") | ||
+ | } | ||
== See also == | == See also == | ||
+ | * {{aws_s3_object}} | ||
* {{tf s3}} | * {{tf s3}} | ||
[[Category:Terraform]] | [[Category:Terraform]] |
Latest revision as of 09:39, 4 January 2024
aws_s3_object
Official example[edit]
Upload a file:
resource "aws_s3_object" "object" { bucket = "your_bucket_name" key = "new_object_key" source = "path/to/file" etag = filemd5("path/to/file") }
See also[edit]
aws_s3_object
- Terraform S3 resources:
aws_s3_bucket, aws_s3_object, aws_s3_bucket_policy, aws_s3_bucket_acl, aws_s3_bucket_website_configuration, aws_s3_bucket cors_configuration, aws_s3_account_public_access_block
, Terraform module: s3-bucket,aws_s3_bucket_versioning, aws_s3_bucket_server_side_encryption_configuration, aws_s3_bucket_logging
Advertising: