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

[v15] Remove S3 fields from AWS OIDC IdP set up command #44680

Merged
merged 1 commit into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions lib/config/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -350,22 +350,6 @@ type IntegrationConfAWSOIDCIdP struct {
// ProxyPublicURL is the IdP Issuer URL (Teleport Proxy Public Address).
// Eg, https://<tenant>.teleport.sh
ProxyPublicURL string

// S3BucketURI is the S3 URI which contains the bucket name and prefix for the issuer.
// Format: s3://<bucket-name>/<prefix>
// Eg, s3://my-bucket/idp-teleport
// This is used in two places:
// - create openid configuration and jwks objects
// - set up the issuer
// The bucket must be public and will be created if it doesn't exist.
//
// If empty, the ProxyPublicAddress is used as issuer and no s3 objects are created.
S3BucketURI string

// S3JWKSContentsB64 must contain the public keys for the Issuer.
// The contents must be Base64 encoded.
// Eg. base64(`{"keys":[{"kty":"RSA","alg":"RS256","n":"<value of n>","e":"<value of e>","use":"sig","kid":""}]}`)
S3JWKSContentsB64 string
}

// IntegrationConfListDatabasesIAM contains the arguments of
Expand Down
Loading
Loading