Skip to content

Commit 33fcfe8

Browse files
authored
Merge 36c8649 into 9ef853c
2 parents 9ef853c + 36c8649 commit 33fcfe8

File tree

11 files changed

+211
-116
lines changed

11 files changed

+211
-116
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ on:
1111

1212
jobs:
1313
call-starter-workflow:
14-
uses: keyfactor/actions/.github/workflows/starter.yml@v2
14+
uses: keyfactor/actions/.github/workflows/starter.yml@3.1.2
1515
secrets:
1616
token: ${{ secrets.V2BUILDTOKEN}}
1717
APPROVE_README_PUSH: ${{ secrets.APPROVE_README_PUSH}}
1818
gpg_key: ${{ secrets.KF_GPG_PRIVATE_KEY }}
1919
gpg_pass: ${{ secrets.KF_GPG_PASSPHRASE }}
20+
scan_token: ${{ secrets.SAST_TOKEN }}
Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
5+
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
56
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
7+
<ImplicitUsings>disable</ImplicitUsings>
68
</PropertyGroup>
79

810
<ItemGroup>
@@ -14,10 +16,10 @@
1416
<PackageReference Include="Keyfactor.Logging" Version="1.1.1" />
1517
<PackageReference Include="Keyfactor.Orchestrators.IOrchestratorJobExtensions" Version="0.6.0" />
1618
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
17-
</ItemGroup>
1819

19-
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
20-
<Exec Command="echo F | xcopy &quot;$(SolutionDir)manifest.json&quot; &quot;$(TargetDir)\manifest.json&quot; /Y" />
21-
</Target>
20+
<None Update="manifest.json">
21+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
22+
</None>
23+
</ItemGroup>
2224

2325
</Project>

README.md

Lines changed: 171 additions & 86 deletions
Large diffs are not rendered by default.

docsource/content.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
## Overview
2+
3+
The Google Cloud Platform (GCP) Load Balancer Orchestrator allows for the management of Google Cloud Platform Load Balancer certificate stores. Inventory, Management-Add, and Management-Remove functions are supported. Also, re-binding to endpoints IS supported for certificate renewals (but NOT adding new certificates). The orchestrator uses the Google Cloud Compute Engine API (https://cloud.google.com/compute/docs/reference/rest/v1) to manage stores.
4+
5+
6+
## Requirements
7+
8+
A service account is necessary for authentication to GCP. The following are the required permissions:
9+
- compute.sslCertificates.create
10+
- compute.sslCertificates.delete
11+
- compute.sslCertificates.list
12+
- compute.sslCertificates.get
13+
- compute.targetHttpsProxies.list
14+
- compute.targetHttpsProxies.setSslCertificates
15+
- compute.regionSslCertificates.list
16+
17+
The orchestrator extension supports having credentials provided by the environment, environment variable, or passed manually from Keyfactor Command. You can read more about the first two options [here](https://cloud.google.com/docs/authentication/production#automatically).
18+
19+
To pass credentials from Keyfactor Command you need to first create a service account and then download a service account key. Instructions are [here](https://cloud.google.com/docs/authentication/set-up-adc-local-dev-environment#local-key). Remember to assign the appropriate role/permissions for the service account. Afterwards inside Keyfactor Command copy and paste the contents of the service account key in the password field for the GCP Certificate Store Type.

docsource/gcploadbal.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
## Overview

images/image1.png

-30.1 KB
Binary file not shown.

images/image2.png

-24.7 KB
Binary file not shown.

images/image3.png

-12 KB
Binary file not shown.

images/image4.png

-18.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)