-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Vault CA provider clean up previous default issuers #18773
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
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| ```release-note:bug | ||
| ca: Vault provider now cleans up the previous Vault issuer and key when generating a new leaf signing certificate [[GH-18779](https://github.com/hashicorp/consul/issues/18779)] | ||
| ``` |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,6 +18,7 @@ import ( | |
| vaultapi "github.com/hashicorp/vault/api" | ||
| "github.com/hashicorp/vault/api/auth/gcp" | ||
| vaultconst "github.com/hashicorp/vault/sdk/helper/consts" | ||
| "github.com/stretchr/testify/assert" | ||
| "github.com/stretchr/testify/require" | ||
|
|
||
| "github.com/hashicorp/consul/agent/connect" | ||
|
|
@@ -574,12 +575,6 @@ func TestVaultCAProvider_CrossSignCA(t *testing.T) { | |
| run := func(t *testing.T, tc CASigningKeyTypes, withSudo, expectFailure bool) { | ||
| t.Parallel() | ||
|
|
||
| if tc.SigningKeyType != tc.CSRKeyType { | ||
|
||
| // TODO: uncomment since the bug is closed | ||
| // See https://github.com/hashicorp/vault/issues/7709 | ||
| t.Skip("Vault doesn't support cross-signing different key types yet.") | ||
| } | ||
|
|
||
| testVault1 := NewTestVaultServer(t) | ||
|
|
||
| attr1 := &VaultTokenAttributes{ | ||
|
|
@@ -1195,6 +1190,51 @@ func TestVaultCAProvider_AutoTidyExpiredIssuers(t *testing.T) { | |
| require.Contains(t, errStr, "permission denied") | ||
| } | ||
|
|
||
| func TestVaultCAProvider_DeletePreviousIssuerAndKey(t *testing.T) { | ||
| SkipIfVaultNotPresent(t) | ||
| t.Parallel() | ||
|
|
||
| testVault := NewTestVaultServer(t) | ||
| attr := &VaultTokenAttributes{ | ||
| RootPath: "pki-root", | ||
| IntermediatePath: "pki-intermediate", | ||
| ConsulManaged: true, | ||
| } | ||
| token := CreateVaultTokenWithAttrs(t, testVault.client, attr) | ||
| provider := createVaultProvider(t, true, testVault.Addr, token, | ||
| map[string]any{ | ||
| "RootPKIPath": "pki-root/", | ||
| "IntermediatePKIPath": "pki-intermediate/", | ||
| }) | ||
| res, err := testVault.Client().Logical().List("pki-intermediate/issuers") | ||
| require.NoError(t, err) | ||
| // Why 2 issuers? There is always an initial issuer that | ||
| // gets created before we manage the lifecycle of issuers. | ||
| // Since we're asserting that the number doesn't grow | ||
| // this isn't too much of a concern. | ||
| // | ||
| // Note the key "keys" refers to the IDs of the resource based | ||
| // on the endpoint the response is from. | ||
| require.Len(t, res.Data["keys"], 2) | ||
|
|
||
| res, err = testVault.Client().Logical().List("pki-intermediate/keys") | ||
| require.NoError(t, err) | ||
| require.Len(t, res.Data["keys"], 1) | ||
|
|
||
| for i := 0; i < 3; i++ { | ||
| _, err := provider.GenerateLeafSigningCert() | ||
| require.NoError(t, err) | ||
|
|
||
| res, err := testVault.Client().Logical().List("pki-intermediate/issuers") | ||
| require.NoError(t, err) | ||
| require.Len(t, res.Data["keys"], 2) | ||
|
|
||
| res, err = testVault.Client().Logical().List("pki-intermediate/keys") | ||
| require.NoError(t, err) | ||
| assert.Len(t, res.Data["keys"], 1) | ||
| } | ||
| } | ||
|
|
||
| func TestVaultCAProvider_GenerateIntermediate_inSecondary(t *testing.T) { | ||
| SkipIfVaultNotPresent(t) | ||
|
|
||
|
|
||
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.
Uh oh!
There was an error while loading. Please reload this page.