Skip to content

VAULT-31185 & 31186/use identity token auth for Artifactory in Vault CE & Ent - #31255

Merged
kporter101 merged 6 commits into
mainfrom
VAULT-31185/remove-artifactory-usename
Jul 28, 2025
Merged

VAULT-31185 & 31186/use identity token auth for Artifactory in Vault CE & Ent#31255
kporter101 merged 6 commits into
mainfrom
VAULT-31185/remove-artifactory-usename

Conversation

@kporter101

Copy link
Copy Markdown
Contributor

Description

What does this PR do?
Context: Artifactory username/ API keys are being deprecated in favor of identity tokens, which do not require a username.

  • Removes all references to Artifactory username
  • Replaces references to Artifactory token (API key) with Artifactory Bearer token (identity token)

TODO only if you're a HashiCorp employee

  • Backport Labels: If this fix needs to be backported, use the appropriate backport/ label that matches the desired release branch. Note that in the CE repo, the latest release branch will look like backport/x.x.x, but older release branches will be backport/ent/x.x.x+ent.
    • LTS: If this fixes a critical security vulnerability or severity 1 bug, it will also need to be backported to the current LTS versions of Vault. To ensure this, use all available enterprise labels.
  • ENT Breakage: If this PR either 1) removes a public function OR 2) changes the signature
    of a public function, even if that change is in a CE file, double check that
    applying the patch for this PR to the ENT repo and running tests doesn't
    break any tests. Sometimes ENT only tests rely on public functions in CE
    files.
  • Jira: If this change has an associated Jira, it's referenced either
    in the PR description, commit message, or branch name.
  • RFC: If this change has an associated RFC, please link it in the description.
  • ENT PR: If this change has an associated ENT PR, please link it in the
    description. Also, make sure the changelog is in this PR, not in your ENT PR.

PCI review checklist

  • I have documented a clear reason for, and description of, the change I am making.
  • If applicable, I've documented a plan to revert these changes if they require more than reverting the pull request.
  • If applicable, I've documented the impact of any changes to security controls.

Examples of changes to security controls include using new access control methods, adding or removing logging pipelines, etc.

@kporter101
kporter101 requested a review from a team as a code owner July 11, 2025 18:19
@github-actions github-actions Bot added the hashicorp-contributed-pr If the PR is HashiCorp (i.e. not-community) contributed label Jul 11, 2025
@kporter101
kporter101 force-pushed the VAULT-31185/remove-artifactory-usename branch from c73a9a0 to 5b0c872 Compare July 11, 2025 18:23
@github-actions

github-actions Bot commented Jul 11, 2025

Copy link
Copy Markdown

CI Results:
All Go tests succeeded! ✅

@github-actions

github-actions Bot commented Jul 11, 2025

Copy link
Copy Markdown

Build Results:
All builds succeeded! ✅

ENOS_VAR_tfc_api_token: ${{ secrets.TF_API_TOKEN }}
ENOS_VAR_artifactory_username: ${{ secrets.ARTIFACTORY_USER }}
ENOS_VAR_artifactory_token: ${{ secrets.ARTIFACTORY_TOKEN }}
ENOS_VAR_artifactory_token: ${{ secrets.ARTIFACTORY_BEARER_TOKEN }}

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ryancragun should this still be secrets. or something else?

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would say that it is only this for historical reasons. When it was initially written we used Github Actions secrets for everything. Now we prefer Github Actions secrets for public repos and the internal Vault for private repos.

So to answer: ideally we'd only have this secret set in hashicorp/vault and only use it when the workflow executes in the context of that repository. When it executes in hashicorp/vault-enterprise we probably ought to be retrieving it from Vault.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The way that we do it in test-run-enos-scenario-matrix maps exactly to how we ought to do it here.

@kporter101
kporter101 requested a review from a team as a code owner July 11, 2025 18:43
@kporter101
kporter101 requested a review from stuti-sr July 11, 2025 18:43
@kporter101
kporter101 force-pushed the VAULT-31185/remove-artifactory-usename branch 3 times, most recently from 6543d34 to 1f75fcc Compare July 14, 2025 19:25
@kporter101
kporter101 force-pushed the VAULT-31185/remove-artifactory-usename branch from 1f75fcc to 59d026a Compare July 14, 2025 20:00

@ryancragun ryancragun left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good. Lets clean up the changelog and do some manual verification of the dev scenarios and merge it!

Comment thread changelog/31255.txt Outdated

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since we're only changing the behavior of Vault CI, not the Vault binary itself, we don't need a changelog. Instead, use the pr/no-changelog label to get rid of failed check.

ENOS_VAR_tfc_api_token: ${{ secrets.TF_API_TOKEN }}
ENOS_VAR_artifactory_username: ${{ secrets.ARTIFACTORY_USER }}
ENOS_VAR_artifactory_token: ${{ secrets.ARTIFACTORY_TOKEN }}
ENOS_VAR_artifactory_token: ${{ secrets.ARTIFACTORY_BEARER_TOKEN }}

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The way that we do it in test-run-enos-scenario-matrix maps exactly to how we ought to do it here.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: can we normalize the line length on these new changes?

Comment thread enos/enos-variables.hcl Outdated

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🫗 for basic auth

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🪦

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Before merge we probably ought to test the dev scenarios with the package:rpm and package:deb variants to make sure they're working as expected.

@ryancragun

Copy link
Copy Markdown
Collaborator

I added the backport labels. Even though release testing always happens from main, we generally try and keep the enos and .github directories the same across all active branches.

@kporter101
kporter101 force-pushed the VAULT-31185/remove-artifactory-usename branch 2 times, most recently from 561a4dc to e02156c Compare July 22, 2025 18:38
@kporter101
kporter101 force-pushed the VAULT-31185/remove-artifactory-usename branch from e02156c to 4e85cd0 Compare July 23, 2025 19:14
@vercel

vercel Bot commented Jul 23, 2025

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
vault-ui ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 25, 2025 8:53pm

@ryancragun ryancragun left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lets update the descriptions in both dev scenarios and then merge!

Comment thread enos/enos-dev-scenario-pr-replication.hcl Outdated

@ryancragun ryancragun left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Image

@kporter101
kporter101 merged commit f020140 into main Jul 28, 2025
76 checks passed
@kporter101
kporter101 deleted the VAULT-31185/remove-artifactory-usename branch July 28, 2025 16:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

hashicorp-contributed-pr If the PR is HashiCorp (i.e. not-community) contributed pr/no-changelog pr/no-milestone

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants