{"id":722333,"date":"2024-10-15T11:00:56","date_gmt":"2024-10-15T09:00:56","guid":{"rendered":"https:\/\/www.devoteam.com\/expert-view\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\/"},"modified":"2025-09-16T16:43:55","modified_gmt":"2025-09-16T14:43:55","slug":"how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws","status":"publish","type":"expert-view","link":"https:\/\/devoteam.info\/en-dk\/expert-view\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\/","title":{"rendered":"How S3 Access Grants simplifies S3 Access Management at scale in AWS"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">As organisations grow, managing access to multiple S3 buckets becomes increasingly complex. While effective for individual buckets, traditional bucket policies can become more challenging to operate at scale. Integrating with identity providers for S3 access also becomes difficult. <strong>AWS S3 Access Grants<\/strong> offer a solution to this challenge, providing centralised access management across multiple buckets. In this post, we&#8217;ll explore how S3 Access Grants address the limitations of bucket policies and simplify access control for S3 deployments.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1008\" height=\"538\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/10\/Overview-of-S3-Access-Grants.png\" alt=\"\" class=\"wp-image-69161\" srcset=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/10\/Overview-of-S3-Access-Grants.png 1008w, https:\/\/devoteam.info\/wp-content\/uploads\/2024\/10\/Overview-of-S3-Access-Grants-300x160.png 300w, https:\/\/devoteam.info\/wp-content\/uploads\/2024\/10\/Overview-of-S3-Access-Grants-768x410.png 768w\" sizes=\"auto, (max-width: 1008px) 100vw, 1008px\" \/><\/figure>\n\n\n\n<p class=\"has-text-align-center has-x-small-font-size wp-block-paragraph\"><a href=\"\/\/aws.amazon.com\/blogs\/storage\/scaling-data-access-with-amazon-s3-access-grants\/\" target=\"_blank\" rel=\"noreferrer noopener\">Source: AWS<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Challenge of S3 Access Management at Scale<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">As businesses expand their <a href=\"https:\/\/devoteam.info\/en-dk\/amazon-web-services\/start-with-aws\/\">AWS cloud infrastructure<\/a>, <a href=\"https:\/\/devoteam.info\/en-dk\/amazon-web-services\/security\/\">AWS Security<\/a> becomes crucial. Organisations often manage hundreds or thousands of S3 buckets. This growth presents several challenges:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Policy Complexity: Managing individual bucket policies becomes time-consuming and error-prone.<\/li>\n\n\n\n<li>Size Limitations: Bucket policies have size constraints, limiting their effectiveness for complex access scenarios.<\/li>\n\n\n\n<li>Governance: With traditional methods, ensuring the least privileged access controls and access visibility across multiple buckets is challenging.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Enter AWS S3 Access Grants<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">S3 Access Grants provide a centralised solution for managing access across multiple S3 buckets. Key benefits include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Centralised Management: Define access permissions once and apply them to multiple buckets.<\/li>\n\n\n\n<li>Scalability: Easily manage access for a large number of buckets.<\/li>\n\n\n\n<li>Flexibility: Implement fine-grained control over access permissions.<\/li>\n\n\n\n<li>Overcoming Policy Size Limitations: Address the size constraints of bucket policies.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Implementing S3 Access Grants: A Practical Example<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Let&#8217;s walk through implementing S3 Access Grants using AWS CloudFormation:<\/p>\n\n\n\n<p class=\"has-primary-color has-text-color has-link-color wp-elements-1 wp-block-paragraph\"><strong>Step 1: Create an S3 Access Grants Instance<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The Access Instance serves as a grouping for access grants per region per account.<\/p>\n\n\n\n<pre class=\"wp-block-code has-gray-light-background-color has-background\"><code>S3AccessInstance:\n  Type: AWS::S3::AccessGrantsInstance\n  Properties:\n    Tags:\n      - Key: Name\n        Value: !Sub ${ProjectName}-${EnvironmentSuffix}<\/code><\/pre>\n\n\n\n<p class=\"has-primary-color has-text-color has-link-color wp-elements-2 wp-block-paragraph\"><strong>Step 2: Define the Access Grants Location<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This configuration creates an S3 Access Grants location, assigning the IAM role (<a href=\"https:\/\/docs.aws.amazon.com\/AmazonS3\/latest\/userguide\/access-grants-location.html?icmpid=docs_amazons3_console_import\">AccessRole<\/a>) with the necessary permissions and trust relationship with the S3 Access Grants service. The LocationScope property defines the S3 bucket to which this location applies.<\/p>\n\n\n\n<pre class=\"wp-block-code has-gray-light-background-color has-background\"><code>S3AccessGrantLocation:\n  Type: AWS::S3::AccessGrantsLocation\n  Properties:\n    IamRoleArn: !GetAtt AccessRole.Arn\n    LocationScope: s3:\/\/example-bucket<\/code><\/pre>\n\n\n\n<p class=\"has-primary-color has-text-color has-link-color wp-elements-3 wp-block-paragraph\"><strong>Step 3: Create the Access Grant<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This configuration creates an access grant that gives the specified grantee (in this case, the LambdaExecutionRole) READ permission to the S3 data. The grantee is identified by its ARN and specified as an IAM role. The grantee can also be a corporate directory user or group.<\/p>\n\n\n\n<pre class=\"wp-block-code has-gray-light-background-color has-background\"><code>S3AccessGrant:\n  Type: AWS::S3::AccessGrant\n  Properties:\n    AccessGrantsLocationId: !Ref S3AccessGrantLocation\n    AccessGrantsLocationConfiguration:\n      S3SubPrefix: '*'\n    Grantee:\n      GranteeIdentifier: !GetAtt LambdaExecutionRole.Arn\n      GranteeType: IAM\n    Permission: READ<\/code><\/pre>\n\n\n\n<p class=\"has-primary-color has-text-color has-link-color wp-elements-4 wp-block-paragraph\"><strong>Step 4: Using Access Grants in Your Application<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here&#8217;s an example of how to use the access grant in a Lambda function:<\/p>\n\n\n\n<pre class=\"wp-block-code has-gray-light-background-color has-background\"><code>import boto3\n\ndef lambda_handler(event, context):\n    control_client = boto3.client('s3control')\n    response = control_client.get_data_access(\n        AccountId='123456789012',\n        Target='s3:\/\/example-bucket\/*',\n        Permission='READ',\n        DurationSeconds=900\n    )\n    credentials = response&#91;'Credentials']\n    \n    s3_client = boto3.client(\n        's3',\n        aws_access_key_id=credentials&#91;'AccessKeyId'],\n        aws_secret_access_key=credentials&#91;'SecretAccessKey'],\n        aws_session_token=credentials&#91;'SessionToken']\n    )\n    \n    objects = s3_client.list_objects_v2(Bucket='example-bucket')\n    print(objects)<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">AWS S3 Access Grants offer a powerful solution for managing S3 access at scale. Centralising access management and overcoming the limitations of traditional bucket policies enables organisations to implement more efficient and secure access controls for their S3 resources.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">As demonstrated in our example, implementing this is straightforward and can significantly simplify your S3 access management processes.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Explore S3 Access Grants today and see how it can transform your S3 access management.<\/p>\n\n\n\n<div class=\"wp-block-columns alignfull is-layout-flex wp-container-core-columns-is-layout-4b1fd674 wp-block-columns-is-layout-flex\" style=\"margin-top:var(--wp--preset--spacing--medium);margin-bottom:var(--wp--preset--spacing--medium)\">\n<div class=\"wp-block-column is-vertically-aligned-stretch is-layout-flow wp-container-core-column-is-layout-969dc29d wp-block-column-is-layout-flow\" style=\"padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;flex-basis:100%\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/10\/GettyImages-1348235096-1024x576.jpg\" alt=\"How S3 Access Grants simplifies S3 Access Management at scale in AWS\" class=\"wp-image-69204\" style=\"aspect-ratio:1;object-fit:cover\"\/><\/figure>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-stretch has-gray-light-background-color has-background is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:100%\">\n<div class=\"wp-block-group has-main-color has-gray-light-background-color has-text-color has-background has-link-color wp-elements-5 is-layout-flow wp-container-core-group-is-layout-23162e80 wp-block-group-is-layout-flow\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--medium);padding-right:var(--wp--preset--spacing--large);padding-bottom:var(--wp--preset--spacing--medium);padding-left:var(--wp--preset--spacing--large)\">\n<div class=\"wp-block-group is-vertical is-content-justification-left is-layout-flex wp-container-core-group-is-layout-4a15ae55 wp-block-group-is-layout-flex\" style=\"min-height:0px\">\n<p class=\"has-primary-color has-text-color has-link-color wp-elements-6 wp-block-paragraph\"><strong>AWS<\/strong><\/p>\n\n\n\n<p class=\"has-text-align-left has-main-color has-text-color has-medium-font-size wp-container-content-42c95ffb wp-block-paragraph\">Transform Your Business with Award-Winning AWS Solutions<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Use Amazon Web Services to build a flexible business for the future.<\/p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-left is-layout-flex wp-container-core-buttons-is-layout-5446dffb wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/devoteam.info\/en-dk\/amazon-web-services\/\">Explore AWS Services<\/a><\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>As organisations grow, managing access to multiple S3 buckets becomes increasingly complex. While effective for individual buckets, traditional bucket policies can become more challenging to operate at scale. Integrating with identity providers for S3 access also becomes difficult. AWS S3 Access Grants offer a solution to this challenge, providing centralised access management across multiple buckets. [&hellip;]<\/p>\n","protected":false},"featured_media":0,"template":"","categories":[6179],"tags":[],"industry":[6180],"class_list":["post-722333","expert-view","type-expert-view","status-publish","hentry","category-aws","industry-technology"],"acf":[],"cards":"\n\t<div class=\"single-post-card\">\n\n\t\t\n\n\t\t\n\t\t<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-43282307 wp-block-group-is-layout-flex\">\n\t<p style=\"font-style:normal;font-weight:700\" class=\"has-link-color wp-elements-12 wp-block-lp-post-type has-text-color has-primary-color has-small-font-size\">Expert View<\/p>\n\n\t\t\n\t\t<h3 style=\"font-style:normal;font-weight:400\" class=\"wp-block-post-title has-base-font-size\"><a href=\"https:\/\/devoteam.info\/en-dk\/expert-view\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\/\" target=\"_self\" >How S3 Access Grants simplifies S3 Access Management at scale in AWS<\/a><\/h3><\/div>\n\t\t\n\t<\/div>\n\n","yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v28.4 (Yoast SEO v28.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Use S3 Access Grants to Simplify Access Management | Devoteam<\/title>\n<meta name=\"description\" content=\"Learn how S3 Access Grants simplify data access management across multiple buckets. Discover benefits and a practical CloudFormation example.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/devoteam.info\/en-dk\/expert-view\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How S3 Access Grants simplifies S3 Access Management at scale in AWS\" \/>\n<meta property=\"og:description\" content=\"Learn how S3 Access Grants simplify data access management across multiple buckets. Discover benefits and a practical CloudFormation example.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/devoteam.info\/en-dk\/expert-view\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\/\" \/>\n<meta property=\"og:site_name\" content=\"Devoteam\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-16T14:43:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/10\/GettyImages-1348235096.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1440\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/devoteam.info\\\/en-dk\\\/expert-view\\\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\\\/\",\"url\":\"https:\\\/\\\/devoteam.info\\\/en-dk\\\/expert-view\\\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\\\/\",\"name\":\"Use S3 Access Grants to Simplify Access Management | Devoteam\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/devoteam.info\\\/en-dk\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/devoteam.info\\\/en-dk\\\/expert-view\\\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/devoteam.info\\\/en-dk\\\/expert-view\\\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/devoteam.info\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/Overview-of-S3-Access-Grants.png\",\"datePublished\":\"2024-10-15T09:00:56+00:00\",\"dateModified\":\"2025-09-16T14:43:55+00:00\",\"description\":\"Learn how S3 Access Grants simplify data access management across multiple buckets. Discover benefits and a practical CloudFormation example.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/devoteam.info\\\/en-dk\\\/expert-view\\\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\\\/#breadcrumb\"},\"inLanguage\":\"en-DK\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/devoteam.info\\\/en-dk\\\/expert-view\\\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-DK\",\"@id\":\"https:\\\/\\\/devoteam.info\\\/en-dk\\\/expert-view\\\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\\\/#primaryimage\",\"url\":\"https:\\\/\\\/devoteam.info\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/Overview-of-S3-Access-Grants.png\",\"contentUrl\":\"https:\\\/\\\/devoteam.info\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/Overview-of-S3-Access-Grants.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/devoteam.info\\\/en-dk\\\/expert-view\\\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/devoteam.info\\\/en-dk\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Expert View\",\"item\":\"https:\\\/\\\/devoteam.info\\\/en-dk\\\/expert-view\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How S3 Access Grants simplifies S3 Access Management at scale in AWS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/devoteam.info\\\/en-dk\\\/#website\",\"url\":\"https:\\\/\\\/devoteam.info\\\/en-dk\\\/\",\"name\":\"Devoteam\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/devoteam.info\\\/en-dk\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-DK\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Use S3 Access Grants to Simplify Access Management | Devoteam","description":"Learn how S3 Access Grants simplify data access management across multiple buckets. Discover benefits and a practical CloudFormation example.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/devoteam.info\/en-dk\/expert-view\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\/","og_locale":"en_US","og_type":"article","og_title":"How S3 Access Grants simplifies S3 Access Management at scale in AWS","og_description":"Learn how S3 Access Grants simplify data access management across multiple buckets. Discover benefits and a practical CloudFormation example.","og_url":"https:\/\/devoteam.info\/en-dk\/expert-view\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\/","og_site_name":"Devoteam","article_modified_time":"2025-09-16T14:43:55+00:00","og_image":[{"width":2560,"height":1440,"url":"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/10\/GettyImages-1348235096.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/devoteam.info\/en-dk\/expert-view\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\/","url":"https:\/\/devoteam.info\/en-dk\/expert-view\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\/","name":"Use S3 Access Grants to Simplify Access Management | Devoteam","isPartOf":{"@id":"https:\/\/devoteam.info\/en-dk\/#website"},"primaryImageOfPage":{"@id":"https:\/\/devoteam.info\/en-dk\/expert-view\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\/#primaryimage"},"image":{"@id":"https:\/\/devoteam.info\/en-dk\/expert-view\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\/#primaryimage"},"thumbnailUrl":"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/10\/Overview-of-S3-Access-Grants.png","datePublished":"2024-10-15T09:00:56+00:00","dateModified":"2025-09-16T14:43:55+00:00","description":"Learn how S3 Access Grants simplify data access management across multiple buckets. Discover benefits and a practical CloudFormation example.","breadcrumb":{"@id":"https:\/\/devoteam.info\/en-dk\/expert-view\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\/#breadcrumb"},"inLanguage":"en-DK","potentialAction":[{"@type":"ReadAction","target":["https:\/\/devoteam.info\/en-dk\/expert-view\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\/"]}]},{"@type":"ImageObject","inLanguage":"en-DK","@id":"https:\/\/devoteam.info\/en-dk\/expert-view\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\/#primaryimage","url":"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/10\/Overview-of-S3-Access-Grants.png","contentUrl":"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/10\/Overview-of-S3-Access-Grants.png"},{"@type":"BreadcrumbList","@id":"https:\/\/devoteam.info\/en-dk\/expert-view\/how-s3-access-grants-simplifies-s3-access-management-at-scale-in-aws\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/devoteam.info\/en-dk\/"},{"@type":"ListItem","position":2,"name":"Expert View","item":"https:\/\/devoteam.info\/en-dk\/expert-view\/"},{"@type":"ListItem","position":3,"name":"How S3 Access Grants simplifies S3 Access Management at scale in AWS"}]},{"@type":"WebSite","@id":"https:\/\/devoteam.info\/en-dk\/#website","url":"https:\/\/devoteam.info\/en-dk\/","name":"Devoteam","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/devoteam.info\/en-dk\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-DK"}]}},"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false},"uagb_author_info":{"display_name":"jurian.roije","author_link":"https:\/\/devoteam.info\/en-dk\/author\/"},"uagb_comment_info":0,"uagb_excerpt":"As organisations grow, managing access to multiple S3 buckets becomes increasingly complex. While effective for individual buckets, traditional bucket policies can become more challenging to operate at scale. Integrating with identity providers for S3 access also becomes difficult. AWS S3 Access Grants offer a solution to this challenge, providing centralised access management across multiple buckets.&hellip;","_links":{"self":[{"href":"https:\/\/devoteam.info\/en-dk\/wp-json\/wp\/v2\/expert-view\/722333","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/devoteam.info\/en-dk\/wp-json\/wp\/v2\/expert-view"}],"about":[{"href":"https:\/\/devoteam.info\/en-dk\/wp-json\/wp\/v2\/types\/expert-view"}],"version-history":[{"count":0,"href":"https:\/\/devoteam.info\/en-dk\/wp-json\/wp\/v2\/expert-view\/722333\/revisions"}],"wp:attachment":[{"href":"https:\/\/devoteam.info\/en-dk\/wp-json\/wp\/v2\/media?parent=722333"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devoteam.info\/en-dk\/wp-json\/wp\/v2\/categories?post=722333"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devoteam.info\/en-dk\/wp-json\/wp\/v2\/tags?post=722333"},{"taxonomy":"industry","embeddable":true,"href":"https:\/\/devoteam.info\/en-dk\/wp-json\/wp\/v2\/industry?post=722333"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}