Skip to content

NimTechnology

Trình bày các công nghệ CLOUD một cách dễ hiểu.

  • Kubernetes & Container
    • Docker
    • Kubernetes
      • Ingress
    • Helm Chart
    • Isito-EnvoyFilter
    • Apache Kafka
      • Kafka
      • Kafka Connect
      • Lenses
    • Vault
    • Longhorn – Storage
    • VictoriaMetrics
    • MetalLB
    • Kong Gateway
  • CI/CD
    • ArgoCD
    • ArgoWorkflows
    • Spinnaker
    • Jenkins
    • Harbor
    • TeamCity
    • Git
      • Bitbucket
  • Coding
    • Terraform
      • GCP – Google Cloud
      • AWS – Amazon Web Service
    • Golang
    • Laravel
    • Python
    • Jquery & JavaScript
    • Selenium
  • Log & Monitor
    • DataDog
    • Prometheus
    • Grafana
    • ELK
      • Kibana
      • Logstash
  • BareMetal
    • NextCloud
  • Toggle search form

[AWS] Encrypting data when stored in S3

Posted on September 23, 2022September 23, 2022 By nim No Comments on [AWS] Encrypting data when stored in S3

Bạn có 1 S3 và bạn muốn encyption data khi bạn quang file lên S3 đó.

1) Amazon S3 – customer-provided encryption key (SSE-C)

Bạn có thể tham khảo trước video này

–sse-c-key: là string gồm 32 kí tự

##Uploading a file on local or your laptop to S3 with the declarations such as: "sse-c, sse-c-key"
###############
aws s3 cp ./dev.yaml s3://access-s3-from-other-account/sse-c-dev.yaml --sse-c AES256 --sse-c-key 11111111111111111111111111111111 --profile k8s-mdaas-staging
upload: ./dev.yaml to s3://access-s3-from-other-account/sse-c-dev.yaml

##Checking this file to exist on S3
aws s3 ls s3://access-s3-from-other-account/
2022-09-22 23:04:38        348 dev.yaml
2022-09-23 00:01:08        348 sse-c-dev.yaml

###Download this file on S3 without "--sse-c --sse-c-key"
aws s3 cp s3://access-s3-from-other-account/sse-c-dev.yaml . --profile k8s-mdaas-staging
fatal error: An error occurred (400) when calling the HeadObject operation: Bad Request

###Download this file on S3 with invalid sse-c-key.
aws s3 cp s3://access-s3-from-other-account/sse-c-dev.yaml . --sse-c AES256 --sse-c-key 11111111111111111111111111221111 --profile k8s-mdaas-staging
fatal error: An error occurred (403) when calling the HeadObject operation: Forbidden

root@LP11-D7891:~/demo-kms# aws s3 cp s3://access-s3-from-other-account/sse-c-dev.yaml . --sse-c AES256 --sse-c-key 11111111111111111111111111111111 --profile k8s-mdaas-staging
download: s3://access-s3-from-other-account/sse-c-dev.yaml to ./sse-c-dev.yaml

https://kungfutech.edu.vn/bai-viet/aws/s3-encryption#s3-encryption-trong-aws
Bạn có thể đọc thêm bài này, vì chúng ta còn 2 kiểu encrypt khác

AWS - Amazon Web Service

Post navigation

Previous Post: [Aws] Access S3 or bucket from other account AWS
Next Post: [Assume Role/KMS] Using Assume Role to make the other AWS Account access all KMS that/this AWS Account.

More Related Articles

[AWS/EKS] EFS CSI Driver – Create Persistent Volume Clain with ReadWriteMany type on EKS AWS - Amazon Web Service
[AWS] Encrypting your data easily via KMS on AWS AWS - Amazon Web Service
[AWS] Demo “code build” with experiment easily on AWS AWS - Amazon Web Service
Experiences for IP Addresses Shortage on EKS Clusters AWS - Amazon Web Service
[AWS] – Terraform Beginner – Lesson 1: Create a Free Account of AWS AWS - Amazon Web Service
[Terraform] – Terraform Beginner – Lesson 7: Terraform Modules AWS - Amazon Web Service

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Tham Gia Group DevOps nhé!
Để Nim có nhiều động lực ra nhiều bài viết.
Để nhận được những thông báo mới nhất.

Recent Posts

  • Experiences for IP Addresses Shortage on EKS Clusters March 29, 2023
  • [Talisman] Discover the sensitive information in your code. March 28, 2023
  • [Prometheus/Grafana] Install Prometheus and Grafana on ubuntu. March 27, 2023
  • [Kong Gateway] WebSocket connection failed March 26, 2023
  • [Nextcloud] Can’t download files to have a size bigger than 2Gi on NextCloud – RaspBerry March 24, 2023

Archives

  • March 2023
  • February 2023
  • January 2023
  • December 2022
  • November 2022
  • October 2022
  • September 2022
  • August 2022
  • July 2022
  • June 2022
  • May 2022
  • April 2022
  • March 2022
  • February 2022
  • January 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • June 2021

Categories

  • BareMetal
    • NextCloud
  • CI/CD
    • ArgoCD
    • ArgoWorkflows
    • Git
      • Bitbucket
    • Harbor
    • Jenkins
    • Spinnaker
    • TeamCity
  • Coding
    • Golang
    • Jquery & JavaScript
    • Laravel
    • Python
    • Selenium
    • Terraform
      • AWS – Amazon Web Service
      • GCP – Google Cloud
  • Kubernetes & Container
    • Apache Kafka
      • Kafka
      • Kafka Connect
      • Lenses
    • Docker
    • Helm Chart
    • Isito-EnvoyFilter
    • Kong Gateway
    • Kubernetes
      • Ingress
    • Longhorn – Storage
    • MetalLB
    • Vault
    • VictoriaMetrics
  • Log & Monitor
    • DataDog
    • ELK
      • Kibana
      • Logstash
    • Grafana
    • Prometheus
  • Uncategorized
  • Admin

Copyright © 2023 NimTechnology.