Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Azure ACL available for cloud service?

As far as I know, I have two ways to apply IP address restrictions for cloud service.

  1. Add startup task on the web role to use netsh command to modify the windows firewall
  2. Sandrino Di Mattia has a good solution here, which could config the firewall via cloud service configuration.

Recently Azure releases ACL support for VM endpoint. Is there the same way to apply ACL for cloud service?

like image 971
user2651912 Avatar asked Nov 12 '22 00:11

user2651912


1 Answers

In the most recent Azure SDK (2.3) ACL's have been included as part of Cloud Services (Web/Worker Roles/PaaS).

http://blogs.msdn.com/b/walterm/archive/2014/04/22/windows-azure-paas-acls-are-here.aspx

like image 178
CameraSchoolDropout Avatar answered Dec 10 '22 20:12

CameraSchoolDropout