Skip to content

Commit 30fa871

Browse files
authored
Merge pull request #36 from Keyfactor/feat/AB#70906/device-group-subset-support
Support multiple device groups in job properties
2 parents d65ed2e + 892158c commit 30fa871

33 files changed

+3791
-337
lines changed

.github/workflows/keyfactor-starter-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
call-starter-workflow:
14-
uses: keyfactor/actions/.github/workflows/starter.yml@3.1.2
14+
uses: keyfactor/actions/.github/workflows/starter.yml@v3
1515
secrets:
1616
token: ${{ secrets.V2BUILDTOKEN}}
1717
APPROVE_README_PUSH: ${{ secrets.APPROVE_README_PUSH}}

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,3 +349,8 @@ MigrationBackup/
349349
# Ionide (cross platform F# VS Code tools) working folder
350350
.ionide/
351351
/PaloAltoTestConsole/hashicorp-vault-pam.dll
352+
353+
**/*.env
354+
**/*.env.*
355+
!**/*.env.example
356+
!**/*.env.*.example

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2.5.0
2+
Features:
3+
- Add support for multiple Device Groups. You can now specify a comma-delimited list of Device Groups for your Certificate Store. i.e. `Group 1;Group 2;Group 3`.
4+
- Improved support for validating commit changes are successfully pushed from Panorama to Firewall.
5+
16
2.4.0
27
* .Net 6 and .Net 8 Build Support
38
* Documentation Updates
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Firewall configuration
2+
PALOALTO_FIREWALL_HOST=host.example.com
3+
PALOALTO_FIREWALL_USER=changeme
4+
PALOALTO_FIREWALL_PASSWORD=changeme
5+
6+
# Panorama configuration
7+
PALOALTO_PANORAMA_HOST=host.example.com
8+
PALOALTO_PANORAMA_USER=changeme
9+
PALOALTO_PANORAMA_PASSWORD=changeme

0 commit comments

Comments
 (0)