Skip to content

Commit dc710ef

Browse files
committed
(#105) Removes Hardened Options from Test
It is necessary to update the build in order for the removes-hardening branch to succeed. I suppose this is excellent verification that this is, in fact, a breaking change of sorts!
1 parent 43697d6 commit dc710ef

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,9 @@ jobs:
244244
Write-Host "Setting up '${{ matrix.variant }}' Certificate"
245245
$Certificate = switch ('${{ matrix.variant }}') {
246246
'self-signed' {
247-
Write-Host "Creating a Self-Signed Certificate for '$($Vm.Name)'"
247+
Write-Host "Using a Self-Signed Certificate for '$($Vm.Name)'"
248248
$CertDetails = @{FQDN = $Vm.Name}
249-
@{Hostname = $CertDetails.FQDN}
249+
@{}
250250
}
251251
'single' {
252252
$CertDetails = Invoke-Command -Session $Session -ScriptBlock {
@@ -268,7 +268,7 @@ jobs:
268268
}
269269
}
270270
Write-Host "Using Certificate with Thumbprint '$($Thumbprint)'"
271-
@{Thumbprint = $CertDetails.Thumbprint; Hardened = $true}
271+
@{Thumbprint = $CertDetails.Thumbprint}
272272
}
273273
'wildcard' {
274274
$CertDetails = Invoke-Command -Session $Session -ScriptBlock {
@@ -290,7 +290,7 @@ jobs:
290290
}
291291
}
292292
Write-Host "Using Wildcard with Thumbprint '$($Thumbprint)'"
293-
@{Thumbprint = $CertDetails.Thumbprint; CertificateDnsName = $CertDetails.FQDN; Hardened = $true}
293+
@{Thumbprint = $CertDetails.Thumbprint; CertificateDnsName = $CertDetails.FQDN}
294294
}
295295
}
296296

0 commit comments

Comments
 (0)