We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e513e6 commit 3ed86c8Copy full SHA for 3ed86c8
redshift_connector/plugin/saml_credentials_provider.py
@@ -106,7 +106,7 @@ def refresh(self: "SamlCredentialsProvider") -> None:
106
_logger.debug("decoded SAML assertion into xml format")
107
soup = bs4.BeautifulSoup(doc, "xml")
108
attrs = soup.findAll("Attribute")
109
- # extract RoleArn adn PrincipleArn from SAML assertion
+ # extract RoleArn and PrincipleArn from SAML assertion
110
role_pattern = re.compile(r"arn:aws:iam::\d*:role/\S+")
111
provider_pattern = re.compile(r"arn:aws:iam::\d*:saml-provider/\S+")
112
roles: typing.Dict[str, str] = {}
0 commit comments