-
-
Notifications
You must be signed in to change notification settings - Fork 353
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
feat: Support custom log configuration #342
feat: Support custom log configuration #342
Conversation
This PR has been automatically marked as stale because it has been open 30 days |
@antonbabenko @bryantbiggs would you be able to take a look at this? |
This PR has been automatically marked as stale because it has been open 30 days |
Kind reminder. |
This will be handled with #297 |
This PR has been automatically marked as stale because it has been open 30 days |
+1 for this change. when can we expect #297 to be implemented? |
This PR has been automatically marked as stale because it has been open 30 days |
Remove stale label. |
This PR has been automatically marked as stale because it has been open 30 days |
Remove stale label. |
This issue has been resolved in version 4.0.0 🎉 |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Description
logConfiguration
stanza for the ECS task for Atlantis.count
instead offor_each
for iam policy attachments.Motivation and Context
terraform plan
for policies yet to be created (this will recreate policy attachments with indexes instead of keys).Breaking Changes
resource "aws_iam_role_policy_attachment" "ecs_task_execution"
will be recreated due to the nature of using index-based (count
) vs. map-name-based (for_each
) approach.How Has This Been Tested?
examples/*
to demonstrate and validate my change(s)examples/*
projectspre-commit run -a
on my pull requestThe changes have been tested with the latest version of module running in production. The recreated policy attachments had no influence on the running Atlantis instance.
Snippets: