Skip to content

Commit

Permalink
Add two test org level secrest HELLO_WORLD@quest and HELLO_WORLD@color
Browse files Browse the repository at this point in the history
Here is documentation on managing [organization secrets](https://otterdog.readthedocs.io/en/latest/reference/organization/secret/)

```javascript
orgs.newOrg('eclipse-pass') {
  secrets+: [
    orgs.newOrgSecret('HELLO_WORLD_QUEST') {
      value: "bitwarden:23801ca4-fd27-446c-b5af-b07b0108f443@quest",
    },
    orgs.newOrgSecret('HELLO_WORLD_COLOR') {
      value: "bitwarden:23801ca4-fd27-446c-b5af-b07b0108f443@color",
    },
  ],
}
```
  • Loading branch information
aforward committed Sep 26, 2023
1 parent fbf6de9 commit b7916c2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions otterdog/eclipse-pass.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ orgs.newOrg('eclipse-pass') {
},
],
secrets+: [
orgs.newOrgSecret('HELLO_WORLD_QUEST') {
value: "bitwarden:23801ca4-fd27-446c-b5af-b07b0108f443@quest",
},
orgs.newOrgSecret('HELLO_WORLD_COLOR') {
value: "bitwarden:23801ca4-fd27-446c-b5af-b07b0108f443@color",
},
orgs.newOrgSecret('GH_PAT') {
value: "********",
},
Expand Down

0 comments on commit b7916c2

Please sign in to comment.