{"id":934,"date":"2019-01-21T18:28:55","date_gmt":"2019-01-21T15:28:55","guid":{"rendered":"https:\/\/artem.services\/?p=524"},"modified":"2019-03-17T17:32:28","modified_gmt":"2019-03-17T14:32:28","slug":"aws-send-to-s3-bucket-file-via-curl-2","status":"publish","type":"post","link":"https:\/\/artem.services\/?p=934&lang=en","title":{"rendered":"AWS &#8212; Send a file to S3 Bucket using CURL"},"content":{"rendered":"<p><img loading=\"lazy\" class=\"size-full wp-image-214 aligncenter\" src=\"https:\/\/artem.services\/wp-content\/uploads\/2018\/11\/AWS-Logo.png\" alt=\"\" width=\"975\" height=\"450\" srcset=\"https:\/\/artem.services\/wp-content\/uploads\/2018\/11\/AWS-Logo.png 975w, https:\/\/artem.services\/wp-content\/uploads\/2018\/11\/AWS-Logo-300x138.png 300w, https:\/\/artem.services\/wp-content\/uploads\/2018\/11\/AWS-Logo-768x354.png 768w, https:\/\/artem.services\/wp-content\/uploads\/2018\/11\/AWS-Logo-954x440.png 954w\" sizes=\"(max-width: 975px) 100vw, 975px\" \/><\/p>\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n# AWS S3 Credentials\r\nS3_BUCKET=&quot;YOUR_S3_BUCKET_NAME&quot;\r\nS3_ACCESS_KEY=&quot;YOUR_ACCESS_KEY&quot;\r\nS3_SECRET_KEY=&quot;YOUR_SECRET_KEY&quot;\r\n\r\nFILE_NAME=&quot;test.tar.gz&quot;\r\n\r\n# SENDING\r\n\r\ndate=&quot;$(date +%Y%m%d)&quot;\r\ndateFormatted=&quot;$(date -R)&quot;\r\nrelativePath=&quot;\/${S3_BUCKET}\/${FILE_NAME}&quot;\r\ncontentType=&quot;application\/octet-stream&quot;\r\nstringToSign=&quot;PUT\\n\\n${contentType}\\n${dateFormatted}\\n${relativePath}&quot;\r\nsignature=&quot;$(echo -en ${stringToSign} | openssl sha1 -hmac ${S3_SECRET_KEY} -binary | base64)&quot;\r\ncurl -X PUT -T &quot;${FILE_NAME}&quot; \\\r\n-H &quot;Host: ${S3_BUCKET}.s3.amazonaws.com&quot; \\\r\n-H &quot;Date: ${dateFormatted}&quot; \\\r\n-H &quot;Content-Type: ${contentType}&quot; \\\r\n-H &quot;Authorization: AWS ${S3_ACCESS_KEY}:${signature}&quot; \\\r\nhttp:\/\/${S3_BUCKET}.s3.amazonaws.com\/${FILE_NAME}\r\n<\/pre>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[599],"tags":[543,675,483],"_links":{"self":[{"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/posts\/934"}],"collection":[{"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/artem.services\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=934"}],"version-history":[{"count":1,"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/posts\/934\/revisions"}],"predecessor-version":[{"id":937,"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/posts\/934\/revisions\/937"}],"wp:attachment":[{"href":"https:\/\/artem.services\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=934"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/artem.services\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=934"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/artem.services\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=934"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}