AWS OIDC IdP Configuration: support S3 buckets as provider#39026
Merged
marcoandredinis merged 1 commit intomasterfrom Mar 15, 2024
Merged
AWS OIDC IdP Configuration: support S3 buckets as provider#39026marcoandredinis merged 1 commit intomasterfrom
marcoandredinis merged 1 commit intomasterfrom
Conversation
d4d358f to
62a2136
Compare
|
@marcoandredinis - this PR will require admin approval to merge due to its size. Consider breaking it up into a series smaller changes. |
e737ef6 to
0b6d710
Compare
62a2136 to
4e2fd7b
Compare
0b6d710 to
0f25316
Compare
4e2fd7b to
2884b39
Compare
0f25316 to
09860f5
Compare
2884b39 to
40fcb1a
Compare
AntonAM
reviewed
Mar 11, 2024
09860f5 to
cde7c08
Compare
40fcb1a to
07ea739
Compare
AntonAM
approved these changes
Mar 12, 2024
cde7c08 to
d07e452
Compare
07ea739 to
4f90fbf
Compare
d07e452 to
5837314
Compare
4f90fbf to
b02f73a
Compare
5837314 to
70fdcd3
Compare
b02f73a to
59ae769
Compare
kimlisa
approved these changes
Mar 15, 2024
8fa75a2 to
f0a6336
Compare
59ae769 to
be1db40
Compare
f0a6336 to
bc21b5d
Compare
be1db40 to
82d0b5a
Compare
bc21b5d to
2b2866c
Compare
This PR adds support for setting the AWS OIDC Integration with an S3 bucket as issuer.
82d0b5a to
a9df6f6
Compare
|
@marcoandredinis See the table below for backport results.
|
marcoandredinis
added a commit
that referenced
this pull request
Mar 18, 2024
This PR adds support for setting the AWS OIDC Integration with an S3 bucket as issuer.
marcoandredinis
added a commit
that referenced
this pull request
Mar 18, 2024
This PR adds support for setting the AWS OIDC Integration with an S3 bucket as issuer.
github-merge-queue Bot
pushed a commit
that referenced
this pull request
Mar 18, 2024
* AWS OIDC: Accept custom issuers (#38785) * AWS OIDC: Accept custom issuers This PR adds a new field into the AWS OIDC fields: - issuer This is the issuer that was configured in AWS. It is used by teleport to set the `issuer/iss` field when generating the JWT. This way we'll be able to set a custom issuer. As an example, we could set this to be a public S3 bucket which doesn't suffer from the thumbprint validation issuer. * ensure issuer is a valid https url * use s3 uri instead of any url for issuer * typo and require s3 fields * add missing s3 location when creating integration * improve error messages * AWS OIDC IdP Configuration: support S3 buckets as provider (#39026) This PR adds support for setting the AWS OIDC Integration with an S3 bucket as issuer. * AWS OIDC: Require S3 for configure IdP Script (#39113) There are two new required fields for generating the configure IdP script: - s3Bucket - s3Prefix This must form a valid URI when joining them: s3://<s3Bucket>/<s3Prefix> * update aws sdk to branch/v15
github-merge-queue Bot
pushed a commit
that referenced
this pull request
Mar 18, 2024
* AWS OIDC: Accept custom issuers (#38785) * AWS OIDC: Accept custom issuers This PR adds a new field into the AWS OIDC fields: - issuer This is the issuer that was configured in AWS. It is used by teleport to set the `issuer/iss` field when generating the JWT. This way we'll be able to set a custom issuer. As an example, we could set this to be a public S3 bucket which doesn't suffer from the thumbprint validation issuer. * ensure issuer is a valid https url * use s3 uri instead of any url for issuer * typo and require s3 fields * add missing s3 location when creating integration * improve error messages * AWS OIDC IdP Configuration: support S3 buckets as provider (#39026) This PR adds support for setting the AWS OIDC Integration with an S3 bucket as issuer. * AWS OIDC: Require S3 for configure IdP Script (#39113) There are two new required fields for generating the configure IdP script: - s3Bucket - s3Prefix This must form a valid URI when joining them: s3://<s3Bucket>/<s3Prefix>
This file contains hidden or 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
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.
This PR adds support for setting the AWS OIDC Integration with an S3 bucket as issuer.
Demo:
Context: #38782