-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for issue where plugin was not enforcing plugin-side role limitations for AllowedDomains and AllowSubDomains, and was relying exclusively on the certificate template for these values. ab#55667 ab#16822
- Loading branch information
1 parent
0754030
commit 3438786
Showing
30 changed files
with
1,027 additions
and
233 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -1,43 +1,19 @@ | ||
name: Starter Workflow | ||
on: workflow_dispatch | ||
name: Keyfactor Bootstrap Workflow | ||
|
||
jobs: | ||
catalog-update-check: | ||
runs-on: windows-latest | ||
outputs: | ||
upd_cat: ${{ steps.read-json.outputs.prop }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Read json | ||
id: read-json | ||
shell: pwsh | ||
run: | | ||
$json = Get-Content integration-manifest.json | ConvertFrom-Json | ||
echo "::set-output name=prop::$(echo $json.update_catalog)" | ||
#call-create-github-release-workflow: | ||
# uses: Keyfactor/actions/.github/workflows/github-release.yml@main | ||
|
||
#call-dotnet-build-and-release-workflow: | ||
# needs: [call-create-github-release-workflow] | ||
# uses: Keyfactor/actions/.github/workflows/dotnet-build-and-release.yml@main | ||
# with: | ||
# release_version: ${{ needs.call-create-github-release-workflow.outputs.release_version }} | ||
# release_url: ${{ needs.call-create-github-release-workflow.outputs.release_url }} | ||
# release_dir: SslStoreCaProxy/bin/Release | ||
# secrets: | ||
# token: ${{ secrets.PRIVATE_PACKAGE_ACCESS }} | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
types: [opened, closed, synchronize, edited, reopened] | ||
push: | ||
create: | ||
branches: | ||
- 'release-*.*' | ||
|
||
call-generate-readme-workflow: | ||
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' | ||
uses: Keyfactor/actions/.github/workflows/generate-readme.yml@main | ||
jobs: | ||
call-starter-workflow: | ||
uses: keyfactor/actions/.github/workflows/starter.yml@v2 | ||
secrets: | ||
token: ${{ secrets.APPROVE_README_PUSH }} | ||
|
||
call-update-catalog-workflow: | ||
needs: catalog-update-check | ||
if: needs.catalog-update-check.outputs.upd_cat == 'True' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch') | ||
uses: Keyfactor/actions/.github/workflows/update-catalog.yml@main | ||
secrets: | ||
token: ${{ secrets.SDK_SYNC_PAT }} | ||
|
||
token: ${{ secrets.V2BUILDTOKEN}} | ||
APPROVE_README_PUSH: ${{ secrets.APPROVE_README_PUSH}} | ||
gpg_key: ${{ secrets.KF_GPG_PRIVATE_KEY }} | ||
gpg_pass: ${{ secrets.KF_GPG_PASSPHRASE }} |
This file contains 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 |
---|---|---|
@@ -1,4 +1,10 @@ | ||
.vs/* | ||
vaultSecretsEngine-update.zip | ||
*.zip | ||
vault/plugins/* | ||
*.sh | ||
*.exe | ||
keyfactor | ||
Keyfactor Vault Secrets Engine Guide.docx | ||
Makefile | ||
sample_config.json | ||
README.md |
This file contains 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 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,5 @@ | ||
{ | ||
"files.associations": { | ||
"*.yaml": "home-assistant" | ||
} | ||
} |
This file contains 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,18 @@ | ||
- 1.3.1 | ||
- Fix for issue where plugin was not enforcing plugin-side role limitations for AllowedDomains and AllowSubDomains, and was relying exclusively on the certificate template for these values. | ||
|
||
- 1.3.0 | ||
- Fix for double encoding certificates when viewed in the terminal. | ||
|
||
- 1.2.0 | ||
- Updated the plugin to use it's own internal configuration settings storage per instance. | ||
|
||
- 1.1.0 | ||
- added subject parameters to certificate enrollment | ||
- now defaulting to role values for subject parameters if not provided. | ||
|
||
- 1.0.1 | ||
- This release fixes a bug where the CA logical name was not being URL encoded before sending the request to Keyfactor. | ||
|
||
- 1.00 | ||
- initial release |
Binary file not shown.
This file contains 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,6 @@ | ||
Copyright 2024 Keyfactor | ||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions | ||
and limitations under the License. |
This file contains 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
Oops, something went wrong.