[
https://issues.apache.org/jira/browse/HADOOP-11038?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14126066#comment-14126066
]
Vishal Gupta commented on HADOOP-11038:
---------------------------------------
Please find the updated patches attached.
1) HADOOP-11038.1.patch needs to applied to hadoop-tree.
2) HADOOP-11038.2.patch needs to applied to 0.9.0 version of jets3t. ( the code
changes can also be found at https://github.com/guptavishal/jets3t-aws-roles ).
If the patched version of jets3t in (2) is included in the hadoop-tree, the
options for AWS-roles start getting supported, else the behavior remains the
same as before.
> Support AWS roles to talk to AWS-S3 largely for cross-AWS-account integration
> -----------------------------------------------------------------------------
>
> Key: HADOOP-11038
> URL: https://issues.apache.org/jira/browse/HADOOP-11038
> Project: Hadoop Common
> Issue Type: New Feature
> Components: fs, fs/s3
> Reporter: Vishal Gupta
> Attachments: HADOOP-11038.1.patch, HADOOP-11038.2.patch
>
>
> Currently "hdfs dfs -lsr s3://..." supports acess-keys/secret-keys only as
> the way to authenticate to s3. This should support AWS-roles also because of
> the following reasons :
> 1) AWS-roles is a AWS best-practice and is highly recommended by AWS
> themselves.
> 2) This helps in cross-AWS-account integration also. An AWS-account-holder
> can provide another AWS-account-holder a cross-account-AWS-role to perform
> operations over his S3-buckets.
> The current syntax is "hdfs dfs" is :
> hdfs dfs -Dfs.s3n.awsAccessKeyId=XXXX -Dfs.s3n.awsSecretAccessKey=XXXX -ls
> s3n://.../
> This should change to :
> hdfs dfs -Dfs.s3n.awsAccessKeyId=XXXX -Dfs.s3n.awsSecretAccessKey=XXXX
> -Dfs.s3n.awsRoleToBeAssumed=arn:aws:iam::XXXX:role/XXXX
> -Dfs.s3n.awsExternalId=XXXX -ls s3n://.../
> Extending the use-case a little further, for a client AWS-account to
> integrate with multiple different AWS-accounts, configuration for s3-bucket
> to role-to-be-assumed mapping ( which will override the master-role ) should
> be provided :
> hdfs dfs -Dfs.s3.awsAccessKeyId=XXXX -Dfs.s3.awsSecretAccessKey=XXXX
> -Dfs.s3.awsRoleToBeAssumed=arn:aws:iam::XXXX:role/XXXX
> -Dfs.s3.awsBucketToRoleMapping="{\"bucket1\": {
> \"roleName\":\"arn:aws:iam::XXXX:role/role1\", \"externalId\":\"....\"}}" -ls
> s3://.../
> Since, AWS treats a cross-account-AWS-role the same as an AWS-role within a
> AWS-account, the above flows remain same for a role within a AWS-account.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)