{"id":11175,"date":"2013-12-29T02:28:30","date_gmt":"2013-12-28T20:58:30","guid":{"rendered":"https:\/\/tothenewco.pro\/blog\/?p=11175"},"modified":"2014-12-17T09:08:36","modified_gmt":"2014-12-17T03:38:36","slug":"role-based-s3-access-from-a-specific-ec2-instance","status":"publish","type":"post","link":"https:\/\/tothenewco.pro\/blog\/role-based-s3-access-from-a-specific-ec2-instance\/","title":{"rendered":"IAM Role based access to S3 bucket."},"content":{"rendered":"<p style=\"text-align: justify;\">In one of our projects, we came across a requirement where we were required to fetch a file containing important data from S3 in order to use it. Due to Security concerns we were not keen on storing access keys on the EC2 instance. Which basically meant that we could not configure S3 on that very system as configuring S3 would create a configuration file (.s3cfg) with access keys stored on it.<\/p>\n<p style=\"text-align: justify;\">The architecture is described in image below.<\/p>\n<p style=\"text-align: justify;\"><a href=\"\/blog\/wp-ttn-blog\/uploads\/2013\/12\/S3-RoleBasedAccess-New-Page-2.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-11180\" title=\"S3-RoleBasedAccess \" src=\"\/blog\/wp-ttn-blog\/uploads\/2013\/12\/S3-RoleBasedAccess-New-Page-2.png\" alt=\"S3-RoleBasedAccess \" width=\"2241\" height=\"1118\" \/><\/a><\/p>\n<p style=\"text-align: justify;\">To accomplish this we followed the steps mentioned below<\/p>\n<ol>\n<li style=\"text-align: justify;\"><span style=\"color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, 'Nimbus Sans L', sans-serif; font-style: normal;\">Created an AWS Role named &#8220;Worker&#8221; which EC2 instances can assume with no specific permission policy.<\/span><\/li>\n<p>A role in AWS IAM defines the permissions for service requests and it is assumed by AWS resources like EC2 Instance. The benefit of using roles was that we didn&#8217;t have to configure S3 separately on the instance. S3 in this case used ROLE credentials which are temporary and rotated automatically.<\/p>\n<li style=\"text-align: justify;\"><span style=\"color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, 'Nimbus Sans L', sans-serif; font-style: normal;\">Created an EC2 instance with Role &#8220;Worker&#8221; and Ip address : 54.254.196.37<\/span><\/li>\n<li style=\"text-align: justify;\"><span style=\"color: #333333; font-family: 'Helvetica Neue', Helvetica, Arial, 'Nimbus Sans L', sans-serif; font-style: normal;\">Added policy to our bucket &#8220;com.intelligrape.rolebasedaccess.test&#8221; which only allows EC2 instances with Role &#8220;worker&#8221; and IP address &#8220;54.254.196.37&#8221; to access the file named &#8220;SIPD&#8221;.<\/span><\/li>\n<\/ol>\n<pre><code> \r\n\"Version\": \"2008-10-17\",\r\n\"Id\": \"Policy1388257451238\",\r\n\"Statement\": [ \r\n      { \"Sid\": \"1232343455\",\r\n        \"Effect\": \"Allow\",\r\n        \"Principal\": { \"AWS\": \"arn:aws:iam::10987654321:role\/worker\" },    \/\/arn:aws:iam::accountnumber:role\/rolename\r\n        \"Action\": \"s3:GetObject\",      \/\/ actions allowed, only allowed to fetch object.\r\n        \"Resource\": \"arn:aws:s3:::com.intelligrape.rolebasedaccess.test\/SIPD\", \/\/\"arn:aws:s3:::bucketname\/file\"\r\n        \"Condition\": {\r\n               \"IpAddress\": {\"aws:SourceIp\": \"54.254.196.37\/32\"}     \/\/ Ip address to allow access to\r\n                     } \r\n               } \r\n         ] \r\n}\r\n<\/code><\/pre>\n<p>(Do not forget to remove the comments before putting it to use.)<br \/>\nAnd its done, with this we were able to limit access to S3 bucket to EC2 instance with specific IP address.<\/p>\n<p>More about IAM Roles can be learned at <a href=\"http:\/\/aws.amazon.com\/iam\/faqs\/#iam_role_management_anchor\" title=\"AWS IAM Documentation page\">AWS Documentation Page.<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In one of our projects, we came across a requirement where we were required to fetch a file containing important data from S3 in order to use it. Due to Security concerns we were not keen on storing access keys on the EC2 instance. Which basically meant that we could not configure S3 on that [&hellip;]<\/p>\n","protected":false},"author":16,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":100,"footnotes":""},"categories":[1174],"tags":[248,1256,1167,1254,1255,670],"class_list":["post-11175","post","type-post","status-publish","format-standard","hentry","category-aws-2","tag-aws","tag-bucket","tag-iam","tag-role","tag-role-based-access","tag-s3"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"In one of our projects, we came across a requirement where we were required to fetch a file containing important data from S3 in order to use it. Due to Security concerns we were not keen on storing access keys on the EC2 instance. Which basically meant that we could not configure S3 on that\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Hitesh Bhatia\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/tothenewco.pro\/blog\/role-based-s3-access-from-a-specific-ec2-instance\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"IAM Role based access to S3 bucket. | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"In one of our projects, we came across a requirement where we were required to fetch a file containing important data from S3 in order to use it. Due to Security concerns we were not keen on storing access keys on the EC2 instance. Which basically meant that we could not configure S3 on that\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/tothenewco.pro\/blog\/role-based-s3-access-from-a-specific-ec2-instance\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"IAM Role based access to S3 bucket. | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"In one of our projects, we came across a requirement where we were required to fetch a file containing important data from S3 in order to use it. Due to Security concerns we were not keen on storing access keys on the EC2 instance. Which basically meant that we could not configure S3 on that\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/role-based-s3-access-from-a-specific-ec2-instance\\\/#article\",\"name\":\"IAM Role based access to S3 bucket. | TO THE NEW Blog\",\"headline\":\"IAM Role based access to S3 bucket.\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/hitesh\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2013\\\/12\\\/S3-RoleBasedAccess-New-Page-2.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/role-based-s3-access-from-a-specific-ec2-instance\\\/#articleImage\"},\"datePublished\":\"2013-12-29T02:28:30+05:30\",\"dateModified\":\"2014-12-17T09:08:36+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/role-based-s3-access-from-a-specific-ec2-instance\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/role-based-s3-access-from-a-specific-ec2-instance\\\/#webpage\"},\"articleSection\":\"AWS, aws, bucket, IAM, ROLE, Role based access, s3\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/role-based-s3-access-from-a-specific-ec2-instance\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/aws-2\\\/#listItem\",\"name\":\"AWS\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/aws-2\\\/#listItem\",\"position\":2,\"name\":\"AWS\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/aws-2\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/role-based-s3-access-from-a-specific-ec2-instance\\\/#listItem\",\"name\":\"IAM Role based access to S3 bucket.\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/role-based-s3-access-from-a-specific-ec2-instance\\\/#listItem\",\"position\":3,\"name\":\"IAM Role based access to S3 bucket.\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/aws-2\\\/#listItem\",\"name\":\"AWS\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/hitesh\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/hitesh\\\/\",\"name\":\"Hitesh Bhatia\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/role-based-s3-access-from-a-specific-ec2-instance\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/480688fa251da2d21002803e0b349c1fe911842715b972676a1aa3cb12808e58?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Hitesh Bhatia\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/role-based-s3-access-from-a-specific-ec2-instance\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/role-based-s3-access-from-a-specific-ec2-instance\\\/\",\"name\":\"IAM Role based access to S3 bucket. | TO THE NEW Blog\",\"description\":\"In one of our projects, we came across a requirement where we were required to fetch a file containing important data from S3 in order to use it. Due to Security concerns we were not keen on storing access keys on the EC2 instance. Which basically meant that we could not configure S3 on that\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/role-based-s3-access-from-a-specific-ec2-instance\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/hitesh\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/hitesh\\\/#author\"},\"datePublished\":\"2013-12-29T02:28:30+05:30\",\"dateModified\":\"2014-12-17T09:08:36+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"IAM Role based access to S3 bucket. | TO THE NEW Blog","description":"In one of our projects, we came across a requirement where we were required to fetch a file containing important data from S3 in order to use it. Due to Security concerns we were not keen on storing access keys on the EC2 instance. Which basically meant that we could not configure S3 on that","canonical_url":"https:\/\/tothenewco.pro\/blog\/role-based-s3-access-from-a-specific-ec2-instance\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tothenewco.pro\/blog\/role-based-s3-access-from-a-specific-ec2-instance\/#article","name":"IAM Role based access to S3 bucket. | TO THE NEW Blog","headline":"IAM Role based access to S3 bucket.","author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/hitesh\/#author"},"publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2013\/12\/S3-RoleBasedAccess-New-Page-2.png","@id":"https:\/\/tothenewco.pro\/blog\/role-based-s3-access-from-a-specific-ec2-instance\/#articleImage"},"datePublished":"2013-12-29T02:28:30+05:30","dateModified":"2014-12-17T09:08:36+05:30","inLanguage":"en-US","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/tothenewco.pro\/blog\/role-based-s3-access-from-a-specific-ec2-instance\/#webpage"},"isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/role-based-s3-access-from-a-specific-ec2-instance\/#webpage"},"articleSection":"AWS, aws, bucket, IAM, ROLE, Role based access, s3"},{"@type":"BreadcrumbList","@id":"https:\/\/tothenewco.pro\/blog\/role-based-s3-access-from-a-specific-ec2-instance\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","position":1,"name":"Home","item":"https:\/\/tothenewco.pro\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/aws-2\/#listItem","name":"AWS"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/aws-2\/#listItem","position":2,"name":"AWS","item":"https:\/\/tothenewco.pro\/blog\/category\/aws-2\/","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/role-based-s3-access-from-a-specific-ec2-instance\/#listItem","name":"IAM Role based access to S3 bucket."},"previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/role-based-s3-access-from-a-specific-ec2-instance\/#listItem","position":3,"name":"IAM Role based access to S3 bucket.","previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/aws-2\/#listItem","name":"AWS"}}]},{"@type":"Organization","@id":"https:\/\/tothenewco.pro\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/tothenewco.pro\/blog\/"},{"@type":"Person","@id":"https:\/\/tothenewco.pro\/blog\/author\/hitesh\/#author","url":"https:\/\/tothenewco.pro\/blog\/author\/hitesh\/","name":"Hitesh Bhatia","image":{"@type":"ImageObject","@id":"https:\/\/tothenewco.pro\/blog\/role-based-s3-access-from-a-specific-ec2-instance\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/480688fa251da2d21002803e0b349c1fe911842715b972676a1aa3cb12808e58?s=96&d=mm&r=g","width":96,"height":96,"caption":"Hitesh Bhatia"}},{"@type":"WebPage","@id":"https:\/\/tothenewco.pro\/blog\/role-based-s3-access-from-a-specific-ec2-instance\/#webpage","url":"https:\/\/tothenewco.pro\/blog\/role-based-s3-access-from-a-specific-ec2-instance\/","name":"IAM Role based access to S3 bucket. | TO THE NEW Blog","description":"In one of our projects, we came across a requirement where we were required to fetch a file containing important data from S3 in order to use it. Due to Security concerns we were not keen on storing access keys on the EC2 instance. Which basically meant that we could not configure S3 on that","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/tothenewco.pro\/blog\/role-based-s3-access-from-a-specific-ec2-instance\/#breadcrumblist"},"author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/hitesh\/#author"},"creator":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/hitesh\/#author"},"datePublished":"2013-12-29T02:28:30+05:30","dateModified":"2014-12-17T09:08:36+05:30"},{"@type":"WebSite","@id":"https:\/\/tothenewco.pro\/blog\/#website","url":"https:\/\/tothenewco.pro\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"IAM Role based access to S3 bucket. | TO THE NEW Blog","og:description":"In one of our projects, we came across a requirement where we were required to fetch a file containing important data from S3 in order to use it. Due to Security concerns we were not keen on storing access keys on the EC2 instance. Which basically meant that we could not configure S3 on that","og:url":"https:\/\/tothenewco.pro\/blog\/role-based-s3-access-from-a-specific-ec2-instance\/","og:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"IAM Role based access to S3 bucket. | TO THE NEW Blog","twitter:description":"In one of our projects, we came across a requirement where we were required to fetch a file containing important data from S3 in order to use it. Due to Security concerns we were not keen on storing access keys on the EC2 instance. Which basically meant that we could not configure S3 on that","twitter:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"11175","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 12:21:30","updated":"2024-02-29 08:32:31","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\/category\/aws-2\/\" title=\"AWS\">AWS<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tIAM Role based access to S3 bucket.\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/tothenewco.pro\/blog"},{"label":"AWS","link":"https:\/\/tothenewco.pro\/blog\/category\/aws-2\/"},{"label":"IAM Role based access to S3 bucket.","link":"https:\/\/tothenewco.pro\/blog\/role-based-s3-access-from-a-specific-ec2-instance\/"}],"_links":{"self":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/11175","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/comments?post=11175"}],"version-history":[{"count":0,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/11175\/revisions"}],"wp:attachment":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/media?parent=11175"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/categories?post=11175"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/tags?post=11175"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}