-
Notifications
You must be signed in to change notification settings - Fork 21
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
Allow API tasks to send messages to the arpa_audit_report
SQS queue
#1996
Merged
TylerHendrickson
merged 4 commits into
_staging
from
fix/allow-api-audit-report-permissions
Sep 29, 2023
Merged
Allow API tasks to send messages to the arpa_audit_report
SQS queue
#1996
TylerHendrickson
merged 4 commits into
_staging
from
fix/allow-api-audit-report-permissions
Sep 29, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TylerHendrickson
had a problem deploying
to
staging
September 29, 2023 04:30 — with
GitHub Actions
Failure
TylerHendrickson
temporarily deployed
to
staging
September 29, 2023 04:39 — with
GitHub Actions
Inactive
Report for project:
|
Code Climate has analyzed commit 9c014ee and detected 0 issues on this pull request. The test coverage on the diff in this pull request is 100.0% (50% is the threshold). This pull request will bring the total coverage in the repository to 55.8%. View more on Code Climate. |
as1729
approved these changes
Sep 29, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Follow-up for #1992
Description
This PR adds a missing permission to the ECS task role defined in the
api
Terraform module, which allows publishing of SQS messages to the queue defined by thearpa_audit_report
module. Although thearpa_audit_report
module configures the SQS queue policy to accept messages from API tasks, we still need to give the task's role permission to publish SQS messages. Although it seems redundant (IMO) it makes sense to think of the SQS resource policy as an ingress rule (i.e. defines the allowed principals from which messages may originate) and the task role policy as an egress rule (i.e. defines what the task is allowed to do).In other words:
In addition to implementing the fix, this PR also update's the
sqs_consumer_task
module's README with a note clarifying the need to add permissions on the producer side, as well as a corresponding code example.Screenshots / Demo Video
Testing
See #1992 Testing instructions. Unfortunately, IAM policy enforcement is a "pro-only"/non-community-edition feature of LocalStack, which means this needs to be tested against an actual AWS environment.
Automated and Unit Tests
Manual tests for Reviewer
Checklist