Skip to content
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

fix: Fixed trust condition in modules/iam-github-oidc-role to be https #490

Merged
merged 1 commit into from
May 15, 2024

Conversation

devopserio
Copy link
Contributor

Correcting this to use HTTPS. Adding a pull request to remediate a potential security issue within the "terraform-aws-modules/iam/aws//modules/iam-github-oidc-role" module that pertains to the configuration of IAM roles for OIDC (OpenID Connect) with GitHub Actions.

Issue Description:
The current implementation of the IAM role's trust relationship within the module uses an HTTP URL (http://token.actions.githubusercontent.com) in the token.actions.githubusercontent.com:iss condition. This configuration poses a security risk as the HTTP protocol is not encrypted, making it susceptible to man-in-the-middle attacks where an attacker could intercept or alter the communication.

Security Risk:
Using HTTP allows potential attackers to intercept the authentication tokens used between GitHub Actions and AWS, leading to unauthorized actions or access within AWS resources under certain conditions. The industry best practice is to use HTTPS to ensure the integrity and confidentiality of the communication between clients and servers.

Suggested Fix:
To mitigate this issue and enhance the security of the module, I recommend updating the URL in the trust policy from HTTP to HTTPS. Here is the updated snippet for your reference:

json
Copy code
"Condition": {
"StringEquals": {
"token.actions.githubusercontent.com:aud": "sts.amazonaws.com",
"token.actions.githubusercontent.com:iss": https://token.actions.githubusercontent.com
}
}
Benefits of the Fix:
Updating to HTTPS ensures that the communication between GitHub Actions and AWS IAM via the token issuer URL is secure and encrypted, thereby safeguarding against eavesdropping and tampering by malicious entities.

I believe this change will significantly enhance the security of the module and its users, aligning it with best security practices and AWS recommendations.

Thank you for considering this issue. I appreciate the work you have put into developing this useful module and am looking forward to the continued improvement that enhances its security and reliability. Please let me know if I can provide any further information or assistance.

…orrecting this to use HTTPS

Adding a pull request to remediate a potential security issue within the "terraform-aws-modules/iam/aws//modules/iam-github-oidc-role" module that pertains to the configuration of IAM roles for OIDC (OpenID Connect) with GitHub Actions.
 
Issue Description:
The current implementation of the IAM role's trust relationship within the module uses an HTTP URL (http://token.actions.githubusercontent.com) in the token.actions.githubusercontent.com:iss condition. This configuration poses a security risk as the HTTP protocol is not encrypted, making it susceptible to man-in-the-middle attacks where an attacker could intercept or alter the communication.
 
Security Risk:
Using HTTP allows potential attackers to intercept the authentication tokens used between GitHub Actions and AWS, leading to unauthorized actions or access within AWS resources under certain conditions. The industry best practice is to use HTTPS to ensure the integrity and confidentiality of the communication between clients and servers.
 
Suggested Fix:
To mitigate this issue and enhance the security of the module, I recommend updating the URL in the trust policy from HTTP to HTTPS. Here is the updated snippet for your reference:
 
json
Copy code
"Condition": {
    "StringEquals": {
        "token.actions.githubusercontent.com:aud": "sts.amazonaws.com",
        "token.actions.githubusercontent.com:iss": https://token.actions.githubusercontent.com
    }
}
Benefits of the Fix:
Updating to HTTPS ensures that the communication between GitHub Actions and AWS IAM via the token issuer URL is secure and encrypted, thereby safeguarding against eavesdropping and tampering by malicious entities.
 
I believe this change will significantly enhance the security of the module and its users, aligning it with best security practices and AWS recommendations.
 
Thank you for considering this issue. I appreciate the work you have put into developing this useful module and am looking forward to the continued improvement that enhances its security and reliability. Please let me know if I can provide any further information or assistance.
@antonbabenko antonbabenko changed the title IAM role's trust relationship within the module uses an HTTP URL fix: Fixed trust condition in modules/iam-github-oidc-role to be https May 15, 2024
@antonbabenko
Copy link
Member

Just for the reference, there was a related comment in the past - cc44693#r113925291

@antonbabenko antonbabenko merged commit ecaed18 into terraform-aws-modules:master May 15, 2024
34 of 35 checks passed
antonbabenko pushed a commit that referenced this pull request May 15, 2024
## [5.39.1](v5.39.0...v5.39.1) (2024-05-15)

### Bug Fixes

* Fixed trust condition in modules/iam-github-oidc-role to be https ([#490](#490)) ([ecaed18](ecaed18))
@antonbabenko
Copy link
Member

This PR is included in version 5.39.1 🎉

@antonbabenko
Copy link
Member

Thanks @devopserio for this small fix.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants