feat(secrets): add AWS Secrets Manager provider#5411
Merged
markphelps merged 20 commits intov2from Feb 24, 2026
Merged
Conversation
Signed-off-by: Mark Phelps <209477+markphelps@users.noreply.github.com>
Signed-off-by: Mark Phelps <209477+markphelps@users.noreply.github.com>
Signed-off-by: Mark Phelps <209477+markphelps@users.noreply.github.com>
Signed-off-by: Mark Phelps <209477+markphelps@users.noreply.github.com>
Signed-off-by: Mark Phelps <209477+markphelps@users.noreply.github.com>
Signed-off-by: Mark Phelps <209477+markphelps@users.noreply.github.com>
Signed-off-by: Mark Phelps <209477+markphelps@users.noreply.github.com>
Signed-off-by: Mark Phelps <209477+markphelps@users.noreply.github.com>
Signed-off-by: Mark Phelps <209477+markphelps@users.noreply.github.com>
Signed-off-by: Mark Phelps <209477+markphelps@users.noreply.github.com>
Signed-off-by: Mark Phelps <209477+markphelps@users.noreply.github.com>
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## v2 #5411 +/- ##
==========================================
- Coverage 60.39% 60.38% -0.02%
==========================================
Files 139 140 +1
Lines 13820 13892 +72
==========================================
+ Hits 8347 8389 +42
- Misses 4763 4788 +25
- Partials 710 715 +5
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
erka
reviewed
Feb 20, 2026
…ersion Address PR feedback from erka: - Remove Region field from AWSProviderConfig; rely on AWS SDK default config (AWS_DEFAULT_REGION env var) instead of requiring it in Flipt config - Pin LocalStack to v4.4 due to upcoming distribution model changes Signed-off-by: Mark Phelps <209477+markphelps@users.noreply.github.com>
Signed-off-by: Mark Phelps <209477+markphelps@users.noreply.github.com>
…o/flipt into feat/aws-secrets-manager * 'feat/aws-secrets-manager' of https://github.com/flipt-io/flipt: fix(ui): use 0 as default threshold percentage in quick edit form (#5408) fix(ci): bump Go version to 1.26 in nightly release workflow (#5407)
Region is no longer required for the AWS secrets provider, so the missing region test case is no longer valid. Signed-off-by: Mark Phelps <209477+markphelps@users.noreply.github.com>
The amazon/aws-cli:latest image now ships with gnupg2-minimal which conflicts with the full gnupg2 package. Adding --allowerasing allows yum to replace gnupg2-minimal with gnupg2. Signed-off-by: Mark Phelps <209477+markphelps@users.noreply.github.com>
erka
reviewed
Feb 22, 2026
erka
reviewed
Feb 22, 2026
Co-authored-by: Roman Dmytrenko <rdmytrenko@gmail.com>
erka
approved these changes
Feb 23, 2026
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.
Summary
github.com/aws/aws-sdk-go-v2) to callGetSecretValueandListSecretsChanges
internal/config/secrets.go: AddedAWSProviderConfigstruct withEnabled,Region,EndpointURLfields, validation, and defaultsinternal/coss/secrets/aws/provider.go: AWS Secrets Manager provider implementation withGetSecretandListSecretsinternal/secrets/manager.go: Wired AWS provider initialization into the managercmd/flipt/main.go: Added blank import to register the AWS providerconfig/flipt.schema.cueandconfig/flipt.schema.json: Added AWS provider to configuration schemasbuild/testing/integration.go: Addedsigning/awsintegration test case using LocalStackConfiguration
Secret references use the format:
${secret:aws:my-secret-name}