-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
releng - 0.9.16.0 version increment, deps rebase #7203
Conversation
'AWS::Kinesis::StreamConsumer', | ||
'AWS::CodeDeploy::DeploymentConfig', | ||
'AWS::OpenSearch::Domain', # this is effectively an alias | ||
'AWS::ApiGatewayV2::Api', |
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.
this is a sorted list of the left + some new entries (Launch Template, EMR, SageMaker, Guardduty entires)
@@ -44,7 +44,7 @@ | |||
'role': 'arn:aws:iam::xxxx:role/cloudcustodian-mailer', | |||
'ldap_uid_tags': ['CreatorName', 'Owner'], | |||
'templates_folders': [os.path.abspath(os.path.dirname(__file__)), | |||
os.path.abspath('/')], | |||
os.path.abspath('/'), ''], |
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.
the posixpath.join and os.path.join behavior differential causes us to do a look up on files like C:\\C:/foo/bar/example.jinja
. We pass a empty path here to ensure that we are able to do an abs path join
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.
Good catch - think it's worth a separate follow-up issue to switch to pathlib paths?
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.
thanks, lgtm
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.
Thanks for wrestling through this one 👍
@@ -44,7 +44,7 @@ | |||
'role': 'arn:aws:iam::xxxx:role/cloudcustodian-mailer', | |||
'ldap_uid_tags': ['CreatorName', 'Owner'], | |||
'templates_folders': [os.path.abspath(os.path.dirname(__file__)), | |||
os.path.abspath('/')], | |||
os.path.abspath('/'), ''], |
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.
Good catch - think it's worth a separate follow-up issue to switch to pathlib paths?
No description provided.