You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, awesome repo you have here, but there's one small issue with it:
You have some lines like provider_arn = "arn:aws:iam::" + str(${AWS::AccountId}) + ":saml-provider/" + provider_name which cause an error when you have an account ID beginning with 0. Python barfs on it, so I reckon it would be easier to do provider_arn = "arn:aws:iam::" + "${AWS::AccountId}" + ":saml-provider/" + provider_name
The text was updated successfully, but these errors were encountered:
Hey, awesome repo you have here, but there's one small issue with it:
You have some lines like
provider_arn = "arn:aws:iam::" + str(${AWS::AccountId}) + ":saml-provider/" + provider_name
which cause an error when you have an account ID beginning with 0. Python barfs on it, so I reckon it would be easier to doprovider_arn = "arn:aws:iam::" + "${AWS::AccountId}" + ":saml-provider/" + provider_name
The text was updated successfully, but these errors were encountered: