-
Notifications
You must be signed in to change notification settings - Fork 372
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Switching to SNI based authentication for aad app #3137
Conversation
@@ -67,7 +67,7 @@ RUN \ | |||
cd $HOME && \ | |||
git clone https://github.com/microsoft/lisa.git && \ | |||
cd lisa && \ | |||
git checkout 2c16e32001fdefb9572dff61241451b648259dbf && \ | |||
git checkout 95c09ff7d5b6e71d1642a628607ac9bb441c69f5 && \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pulling lisa latest changes since they updated azure-identity version which supports SNI based authentication
@@ -55,7 +55,7 @@ def add_security_rule(self, security_rule: Dict[str, Any]) -> None: | |||
self._get_network_security_group()["properties"]["securityRules"].append(security_rule) | |||
|
|||
def _get_network_security_group(self) -> Dict[str, Any]: | |||
resources: List[Dict[str, Any]] = self._template["resources"] | |||
resources: Dict[str, Dict[str, Any]] = self._template["resources"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Schema updated in new lisa template; resources type changed to dict(dict) from list(dict)
* SNI auth * new env var * pylint (cherry picked from commit 81140ee)
Description
Fixing security alert - removing pinned certs and switching to subject name issuer-based authentication
Issue #
PR information
Quality of Code and Contribution Guidelines