Skip to content

Commit

Permalink
Updating Appveyor token
Browse files Browse the repository at this point in the history
it had expired
  • Loading branch information
joel74 committed Aug 27, 2023
1 parent ea29d30 commit 0e885ab
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions F5-LTM/F5-LTM.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ Describe 'Get-BigIPPartition' -Tags 'Unit' {
Name = '192.168.1.1'
BaseURL = 'https://192.168.1.1/mgmt/tm/ltm/'
Credential = New-Object System.Management.Automation.PSCredential ('georgejetson', (ConvertTo-SecureString 'judyr0ck$!' -AsPlainText -Force))
LTMVersion = [Version]'12.1.1'
LTMVersion = [Version]'11.5.1'
WebSession = New-Object Microsoft.PowerShell.Commands.WebRequestSession
} | Add-Member -Name GetLink -MemberType ScriptMethod {
param($Link)
$Link -replace 'localhost', $this.Name
$Link -replace 'localhost', $this.Name
} -PassThru

#endregion Arrange: Initialize Mocks
Expand Down Expand Up @@ -120,7 +120,7 @@ Describe 'Get-HealthMonitor' -Tags 'Unit' {
WebSession = New-Object Microsoft.PowerShell.Commands.WebRequestSession
} | Add-Member -Name GetLink -MemberType ScriptMethod {
param($Link)
$Link -replace 'localhost', $this.Name
$Link -replace 'localhost', $this.Name
} -PassThru

#endregion Arrange: Initialize Mocks
Expand Down Expand Up @@ -212,7 +212,7 @@ Describe 'New-F5Session' -Tags 'Unit' {
}
}
Mock Invoke-WebRequest { $true }

$credentials = New-Object System.Management.Automation.PSCredential ('georgejetson', (ConvertTo-SecureString 'judyr0ck$!' -AsPlainText -Force))

#endregion Arrange: Initialize Mocks
Expand Down
8 changes: 4 additions & 4 deletions F5-LTM/F5-LTM.psm1
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<#
.SYNOPSIS
.SYNOPSIS
A module for using the F5 LTM REST API to administer an LTM device
.DESCRIPTION
.DESCRIPTION
This module uses the F5 LTM REST API to manipulate and query pools, pool members, virtual servers and iRules
It is built to work with version 11.6 and higher
.NOTES
.NOTES
File Name : F5-LTM.psm1
Author : Joel Newton - [email protected]
Requires : PowerShell V3
Dependencies : It includes a Validation.cs class file (based on code posted by Brian Scholer) to allow for using the REST API
Dependencies : It includes a Validation.cs class file (based on code posted by Brian Scholer) to allow for using the REST API
with LTM devices using self-signed SSL certificates.
#>

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ environment:
# Encrypted PowerShellGallery API Key to facilitate publishing
# See https://ci.appveyor.com/tools/encrypt
POWERSHELLGALLERY_APIKEY:
secure: Yj2AQDmCBfzuQS6yLUP8ukHWtClQ14EfXNd6AvSFfKO7rXVEHfXb2iroEwV8Vn6U
secure: N0QcDfMjLFNLLPDqHdn/3YClqVccTn4taJOER39vcXO1mBlSyiNJ/vsYqX+QNgbr

skip_commits:
# Skip on updates to the readme. [skip ci] or [ci skip] anywhere in commit message will also prevent a ci build
Expand Down

0 comments on commit 0e885ab

Please sign in to comment.