{"id":392,"date":"2018-12-21T17:39:12","date_gmt":"2018-12-21T14:39:12","guid":{"rendered":"https:\/\/artem.services\/?p=392"},"modified":"2019-07-17T13:05:44","modified_gmt":"2019-07-17T10:05:44","slug":"aws-s3-bucket-public-with-full-access-to-user","status":"publish","type":"post","link":"https:\/\/artem.services\/?p=392","title":{"rendered":"AWS &#8212; S3 Bucket Public with full access to user"},"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<ul>\n<li>\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c: <strong>artem-s3-user<\/strong><\/li>\n<li>S3 \u043a\u043e\u0440\u0437\u0438\u043d\u0430: <strong>artem-s3-bucket<\/strong><\/li>\n<\/ul>\n<p>\u0421\u043e\u0437\u0434\u0430\u0435\u043c<strong> S3 Bucket<\/strong>, \u043f\u0440\u0430\u0432\u0430 \u043f\u043e\u043a\u0430 \u043d\u0435 \u0437\u0430\u0434\u0430\u0435\u043c, \u043f\u0440\u043e\u0441\u0442\u043e \u0437\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u0435\u043c \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0431\u0430\u043a\u0435\u0442\u0430. \u041f\u0435\u0440\u0435\u0445\u043e\u0434\u0438\u043c \u0432 <strong>IAM<\/strong> \u0438 \u0441\u043e\u0437\u0434\u0430\u0435\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0435\u043c \u0435\u043c\u0443 \u0440\u043e\u043b\u044c \u0441\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u044b\u043c:<\/p>\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n{\r\n    &quot;Version&quot;: &quot;2012-10-17&quot;,\r\n    &quot;Statement&quot;: [\r\n        {\r\n            &quot;Sid&quot;: &quot;1&quot;,\r\n            &quot;Effect&quot;: &quot;Allow&quot;,\r\n            &quot;Action&quot;: &quot;s3:PutObject&quot;,\r\n            &quot;Resource&quot;: &quot;arn:aws:s3:::arn:aws:s3:::artem-s3-bucket\/*&quot;\r\n        },\r\n        {\r\n            &quot;Sid&quot;: &quot;2&quot;,\r\n            &quot;Effect&quot;: &quot;Allow&quot;,\r\n            &quot;Action&quot;: &quot;s3:GetObject&quot;,\r\n            &quot;Resource&quot;: &quot;arn:aws:s3:::\/arn:aws:s3:::artem-s3-bucket\/*&quot;\r\n        },\r\n        {\r\n            &quot;Sid&quot;: &quot;3&quot;,\r\n            &quot;Effect&quot;: &quot;Allow&quot;,\r\n            &quot;Action&quot;: [\r\n                &quot;s3:PutAccountPublicAccessBlock&quot;,\r\n                &quot;s3:GetAccountPublicAccessBlock&quot;,\r\n                &quot;s3:ListAllMyBuckets&quot;,\r\n                &quot;s3:HeadBucket&quot;\r\n            ],\r\n            &quot;Resource&quot;: &quot;*&quot;\r\n        },\r\n        {\r\n            &quot;Sid&quot;: &quot;VisualEditor3&quot;,\r\n            &quot;Effect&quot;: &quot;Allow&quot;,\r\n            &quot;Action&quot;: &quot;s3:*&quot;,\r\n            &quot;Resource&quot;: [\r\n                &quot;arn:aws:s3:::artem-s3-bucket\/*&quot;,\r\n                &quot;arn:aws:s3:::artem-s3-bucket&quot;\r\n            ]\r\n        }\r\n    ]\r\n}\r\n<\/pre>\n<p><!--more--><\/p>\n<h3>S3 Bucket Policy:<\/h3>\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n{\r\n    &quot;Version&quot;: &quot;2012-10-17&quot;,\r\n    &quot;Statement&quot;: [\r\n        {\r\n            &quot;Sid&quot;: &quot;1&quot;,\r\n            &quot;Effect&quot;: &quot;Allow&quot;,\r\n            &quot;Principal&quot;: {\r\n                &quot;AWS&quot;: &quot;arn:aws:iam::XXXXXXXXXXXX:user\/artem-s3-user&quot;\r\n            },\r\n            &quot;Action&quot;: &quot;s3:PutObject&quot;,\r\n            &quot;Resource&quot;: &quot;arn:aws:s3:::artem-s3-bucket\/*&quot;\r\n        },\r\n        {\r\n            &quot;Sid&quot;: &quot;2&quot;,\r\n            &quot;Effect&quot;: &quot;Allow&quot;,\r\n            &quot;Principal&quot;: &quot;*&quot;,\r\n            &quot;Action&quot;: &quot;s3:GetObject&quot;,\r\n            &quot;Resource&quot;: &quot;arn:aws:s3:::artem-s3-bucket\/*&quot;\r\n        }\r\n    ]\r\n}\r\n<\/pre>\n<p>&nbsp;<\/p>\n<blockquote><p><strong>XXXXXXXXXXXX<\/strong> &#8212; <strong>ID<\/strong> \u0432\u0430\u0448\u0435\u0439 \u0443\u0447\u0435\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 <strong>AWS<\/strong><\/p><\/blockquote>\n","protected":false},"excerpt":{"rendered":"<p>\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c: artem-s3-user S3 \u043a\u043e\u0440\u0437\u0438\u043d\u0430: artem-s3-bucket \u0421\u043e\u0437\u0434\u0430\u0435\u043c S3 Bucket, \u043f\u0440\u0430\u0432\u0430 \u043f\u043e\u043a\u0430 \u043d\u0435 \u0437\u0430\u0434\u0430\u0435\u043c, \u043f\u0440\u043e\u0441\u0442\u043e \u0437\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u0435\u043c \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0431\u0430\u043a\u0435\u0442\u0430. \u041f\u0435\u0440\u0435\u0445\u043e\u0434\u0438\u043c \u0432 IAM \u0438 \u0441\u043e\u0437\u0434\u0430\u0435\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0435\u043c \u0435\u043c\u0443 \u0440\u043e\u043b\u044c \u0441\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u044b\u043c:<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[24],"tags":[25,104,35],"_links":{"self":[{"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/posts\/392"}],"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=392"}],"version-history":[{"count":3,"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/posts\/392\/revisions"}],"predecessor-version":[{"id":1311,"href":"https:\/\/artem.services\/index.php?rest_route=\/wp\/v2\/posts\/392\/revisions\/1311"}],"wp:attachment":[{"href":"https:\/\/artem.services\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=392"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/artem.services\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=392"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/artem.services\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=392"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}