Is there any instace profile available in Azure like in AWS

会有一股神秘感。 提交于 2019-12-10 17:10:29

问题


An instance profile is a container for an IAM role that you can use to pass role information to an EC2 instance when the instance starts.

http://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use_switch-role-ec2_instance-profiles.html


回答1:


Azure also supports IAM.

Microsoft Azure identity and access management solutions help IT protect access to applications and resources across the corporate data center and into the cloud. This enables additional levels of validation, such as multifactor authentication and conditional access policies. Monitoring suspicious activity through advanced security reporting, auditing and alerting helps mitigate potential security issues.

More detailed information please refer to this link.

Update:

You do have the ability to create Signed Access Signatures for all three Windows Azure Storage services (BLOBs, Queues and Tables) as well as for Windows Azure Service Bus Brokered Messages (Queues, Topics & Subscriptions). I have a similar question with you, maybe you could check.




回答2:


A mechanism very similar to AWS instance profiles is Managed Service Identity (MSI) for Azure, which was announced in September 2017, though at the time of this writing, it is still in preview. I didn't try it out yet, but it does work the same way as instance profiles on AWS do, by automatically authenticating the VM to a meta-data service and allowing you to query for additional credentials without having to hardcode it into your code or image.




回答3:


I found Azure is not support instance profile like aws.

If bind a role to instance on aws, aws system will generate a temporary api access token and write to metadata server.

Aws sdk will auto fetch access token from metadata server, so a service that uses aws sdk does not need to configure sdk's access token.

But Azure's IAM and SAS(shared access signature) and metadata server, is not support mechanism like above.



来源:https://stackoverflow.com/questions/41696362/is-there-any-instace-profile-available-in-azure-like-in-aws

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!