Skip to content

Commit

Permalink
Merge pull request #2 from Keyfactor/migrate-workflow
Browse files Browse the repository at this point in the history
migrate to new workflow with secrets.token
update manifest 
clean up readme
  • Loading branch information
fiddlermikey authored Apr 28, 2022
2 parents 406bfcc + cfec349 commit cbe76bd
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 334 deletions.
27 changes: 0 additions & 27 deletions .github/workflows/keyfactor-extension-generate-readme.yml

This file was deleted.

164 changes: 0 additions & 164 deletions .github/workflows/keyfactor-extension-prerelease.yml

This file was deleted.

129 changes: 0 additions & 129 deletions .github/workflows/keyfactor-extension-release.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/keyfactor-starter-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Starter Workflow
on: [workflow_dispatch, push, pull_request]

jobs:
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: PaloAlto/bin/Release/netcoreapp3.1 # output directory to upload as a release, relative to checkout workspace
secrets:
token: ${{ secrets.PRIVATE_PACKAGE_ACCESS }}

call-generate-readme-workflow:
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
uses: Keyfactor/actions/.github/workflows/generate-readme.yml@main

call-update-catalog-workflow:
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
uses: Keyfactor/actions/.github/workflows/update-catalog.yml@main
secrets:
token: ${{ secrets.SDK_SYNC_PAT }}
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
# Palo Alto PA-VM Firewall
## Orchestrator

Palo Alto PA-VM Firewall Orchestrator for Add, Remove and Inventory.

## Prototype Ready
#### Integration status: Prototype - Demonstration quality. Not for use in customer environments.

## About the Keyfactor Universal Orchestrator Capability

This repository contains a Universal Orchestrator Capability which is a plugin to the Keyfactor Universal Orchestrator. Within the Keyfactor Platform, Orchestrators are used to manage “certificate stores” — collections of certificates and roots of trust that are found within and used by various applications.

The Universal Orchestrator is part of the Keyfactor software distribution and is available via the Keyfactor customer portal. For general instructions on installing Capabilities, see the “Keyfactor Command Orchestrator Installation and Configuration Guide” section of the Keyfactor documentation. For configuration details of this specific Capability, see below in this readme.

The Universal Orchestrator is the successor to the Windows Orchestrator. This Capability plugin only works with the Universal Orchestrator and does not work with the Windows Orchestrator.

---

<!-- add integration specific information below -->
***
**Palo Alto PA-VM Firewall Device Configuration**

**Overview**
Expand Down Expand Up @@ -121,3 +128,4 @@ curl -k -X GET 'https://<firewall>/api/?type=keygen&user=<username>&password=<pa
![](images/InventoryLocation1.gif)

![](images/InventoryLocation2.gif)

3 changes: 2 additions & 1 deletion integration-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"$schema": "https://keyfactor.github.io/integration-manifest-schema.json",
"integration_type": "orchestrator",
"name": "Palo Alto PA-VM Firewall",
"status": "Prototype",
"status": "prototype",
"link_github": false,
"description": "Palo Alto PA-VM Firewall Orchestrator for Add, Remove and Inventory."
}
Loading

0 comments on commit cbe76bd

Please sign in to comment.