Skip to content

Commit

Permalink
Fix wrong resolved secrets missing credential provider.
Browse files Browse the repository at this point in the history
  • Loading branch information
adoptium-bot committed Sep 12, 2023
1 parent c74a03e commit 5d900ea
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions otterdog/adoptium.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -166,22 +166,22 @@ orgs.newOrg('adoptium') {
web_commit_signoff_required: false,
secrets: [
orgs.newRepoSecret('AZURE_CLIENT_ID') {
value: "bots/adoptium/azure/azure-client-id",
value: "pass:bots/adoptium/azure/azure-client-id",
},
orgs.newRepoSecret('AZURE_CLIENT_ID_OIDC') {
value: "bots/adoptium/azure/azure-client-id-oidc",
value: "pass:bots/adoptium/azure/azure-client-id-oidc",
},
orgs.newRepoSecret('AZURE_CLIENT_SECRET') {
value: "bots/adoptium/azure/azure-client-secret",
value: "pass:bots/adoptium/azure/azure-client-secret",
},
orgs.newRepoSecret('AZURE_SUBSCRIPTION_ID') {
value: "bots/adoptium/azure/azure-subscription-id",
value: "pass:bots/adoptium/azure/azure-subscription-id",
},
orgs.newRepoSecret('AZURE_TENANT_ID') {
value: "bots/adoptium/azure/azure-tenant-id",
value: "pass:bots/adoptium/azure/azure-tenant-id",
},
orgs.newRepoSecret('DIGITALOCEAN_ACCESS_TOKEN') {
value: "bots/adoptium/digitalocean.com/access-token",
value: "pass:bots/adoptium/digitalocean.com/access-token",
},
],
branch_protection_rules: [
Expand Down Expand Up @@ -468,10 +468,10 @@ orgs.newOrg('adoptium') {
],
secrets: [
orgs.newRepoSecret('DOCKER_PASSWORD') {
value: "bots/adoptium/docker.com/password",
value: "pass:bots/adoptium/docker.com/password",
},
orgs.newRepoSecret('DOCKER_USERNAME') {
value: "bots/adoptium/docker.com/username",
value: "pass:bots/adoptium/docker.com/username",
},
],
branch_protection_rules: [
Expand All @@ -493,10 +493,10 @@ orgs.newOrg('adoptium') {
web_commit_signoff_required: false,
secrets: [
orgs.newRepoSecret('ARTIFACTORY_PASSWORD') {
value: "bots/adoptium/artifactory/password",
value: "pass:bots/adoptium/artifactory/password",
},
orgs.newRepoSecret('ARTIFACTORY_USER') {
value: "bots/adoptium/artifactory/username",
value: "pass:bots/adoptium/artifactory/username",
},
],
branch_protection_rules: [
Expand Down Expand Up @@ -644,10 +644,10 @@ orgs.newOrg('adoptium') {
web_commit_signoff_required: false,
secrets: [
orgs.newRepoSecret('ARTIFACTORY_PASSWORD') {
value: "bots/adoptium/artifactory/password",
value: "pass:bots/adoptium/artifactory/password",
},
orgs.newRepoSecret('ARTIFACTORY_USER') {
value: "bots/adoptium/artifactory/username",
value: "pass:bots/adoptium/artifactory/username",
},
],
},
Expand All @@ -662,7 +662,7 @@ orgs.newOrg('adoptium') {
web_commit_signoff_required: false,
secrets: [
orgs.newRepoSecret('TEMURIN_RSA_PRIVATE') {
value: "bots/adoptium/github.com/temurin-rsa-private",
value: "pass:bots/adoptium/github.com/temurin-rsa-private",
},
],
branch_protection_rules: [
Expand Down

0 comments on commit 5d900ea

Please sign in to comment.