Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add minio_s3_object data source #572

Merged
merged 3 commits into from
Jul 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
176 changes: 176 additions & 0 deletions minio/data_source_minio_s3_object.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,176 @@
package minio

import (
"context"
"fmt"
"io"
"log"
"strconv"

"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/minio/minio-go/v7"
)

func dataSourceMinioS3Object() *schema.Resource {
return &schema.Resource{
ReadWithoutTimeout: dataSourceMinioS3ObjectRead,
Schema: map[string]*schema.Schema{
"bucket_name": {
Type: schema.TypeString,
Required: true,
Description: "The name of the bucket containing the object",
},
"object_name": {
Type: schema.TypeString,
Required: true,
Description: "The name of the object",
},
"content_type": {
Type: schema.TypeString,
Computed: true,
Description: "The content type of the object",
},
"content": {
Type: schema.TypeString,
Computed: true,
Description: "The content of the object",
},
"etag": {
Type: schema.TypeString,
Computed: true,
Description: "The ETag of the object",
},
"expires": {
Type: schema.TypeString,
Computed: true,
Description: "The date and time at which the object is no longer able to be cached",
},
"expiration_rule_id": {
Type: schema.TypeString,
Computed: true,
Description: "The lifecycle expiry-date and ruleID associated with the expiry",
},
"is_latest": {
Type: schema.TypeBool,
Computed: true,
Description: "Whether the object is the latest version",
},
"last_modified": {
Type: schema.TypeString,
Computed: true,
Description: "The last modified time of the object",
},
"owner": {
Type: schema.TypeMap,
Computed: true,
Elem: &schema.Schema{
Type: schema.TypeString,
},
Description: "The owner of the object",
},
"size": {
Type: schema.TypeInt,
Computed: true,
Description: "The size of the object",
},
"storage_class": {
Type: schema.TypeString,
Computed: true,
Description: "The storage class of the object",
},
"version_id": {
Type: schema.TypeString,
Computed: true,
Description: "The version ID of the object",
},

"checksum_crc32": {
Type: schema.TypeString,
Computed: true,
Description: "The CRC32 checksum of the object",
},
"checksum_crc32c": {
Type: schema.TypeString,
Computed: true,
Description: "The CRC32C checksum of the object",
},
"checksum_sha1": {
Type: schema.TypeString,
Computed: true,
Description: "The SHA1 checksum of the object",
},
"checksum_sha256": {
Type: schema.TypeString,
Computed: true,
Description: "The SHA256 checksum of the object",
},
},
}
}

func dataSourceMinioS3ObjectRead(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
var diags diag.Diagnostics

conn := meta.(*S3MinioClient).S3Client

bucketName := d.Get("bucket_name").(string)
if bucketName == "" {
return diag.Errorf("bucket_name is required")
}

objectName := d.Get("object_name").(string)
if objectName == "" {
return diag.Errorf("object_name is required")
}

object, err := conn.GetObject(ctx, bucketName, objectName, minio.GetObjectOptions{})
if err != nil {
return diag.FromErr(fmt.Errorf("error reading object: %w", err))
}
defer func() {
err := object.Close()
if err != nil {
log.Printf("[WARN] Error closing S3 object source (%s): %s", objectName, err)
}
}()

objectInfo, err := object.Stat()
if err != nil {
return diag.FromErr(fmt.Errorf("error getting object info: %w", err))
}

objectContent := make([]byte, objectInfo.Size)
bytesRead, err := object.Read(objectContent)
if err != io.EOF {
return diag.FromErr(fmt.Errorf("error reading object content: %w", err))
}
if bytesRead != int(objectInfo.Size) {
return diag.Errorf("error reading object content: expected %d bytes, got %d", objectInfo.Size, bytesRead)
}

d.SetId(strconv.Itoa(HashcodeString(bucketName + objectName + objectInfo.VersionID)))

owner := map[string]interface{}{
"display_name": objectInfo.Owner.DisplayName,
"id": objectInfo.Owner.ID,
}

_ = d.Set("content_type", objectInfo.ContentType)
_ = d.Set("content", string(objectContent))
_ = d.Set("etag", objectInfo.ETag)
_ = d.Set("expires", objectInfo.Expires)
_ = d.Set("expiration_rule_id", objectInfo.ExpirationRuleID)
_ = d.Set("is_latest", objectInfo.IsLatest)
_ = d.Set("last_modified", objectInfo.LastModified)
_ = d.Set("owner", owner)
_ = d.Set("size", objectInfo.Size)
_ = d.Set("storage_class", objectInfo.StorageClass)
_ = d.Set("version_id", objectInfo.VersionID)
_ = d.Set("checksum_crc32", objectInfo.ChecksumCRC32)
_ = d.Set("checksum_crc32c", objectInfo.ChecksumCRC32C)
_ = d.Set("checksum_sha1", objectInfo.ChecksumSHA1)
_ = d.Set("checksum_sha256", objectInfo.ChecksumSHA256)

return diags
}
1 change: 1 addition & 0 deletions minio/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ func newProvider(envvarPrefixed ...string) *schema.Provider {

DataSourcesMap: map[string]*schema.Resource{
"minio_iam_policy_document": dataSourceMinioIAMPolicyDocument(),
"minio_s3_object": dataSourceMinioS3Object(),
},

ResourcesMap: map[string]*schema.Resource{
Expand Down
Loading