Skip to content

Commit b229dee

Browse files
authored
Merge pull request #55 from wallix/develop
Develop
2 parents 402e732 + 4e6741b commit b229dee

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
2525
passphrase: ${{ secrets.PASSPHRASE }}
2626
- name: Run GoReleaser
27-
uses: goreleaser/goreleaser-action@v6.1.0
27+
uses: goreleaser/goreleaser-action@v6.2.1
2828
with:
2929
version: latest
3030
args: release --clean

bastion/resource_config_x509_test.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ func TestAccResourceConfigX509_basic(t *testing.T) {
4242
func testAccResourceConfigX509Basic() string {
4343
return (`
4444
resource "bastion_x509_config" "test" {
45-
ca_certificate = "test-ca-cert"
46-
server_public_key = "test-public-key"
45+
ca_certificate = "test-ca-cert"
46+
server_public_key = "test-public-key"
4747
server_private_key = "test-private-key"
48-
enable = true
48+
enable = true
4949
}
5050
`)
5151
}
@@ -54,10 +54,10 @@ resource "bastion_x509_config" "test" {
5454
func testAccResourceConfigX509Update() string {
5555
return (`
5656
resource "bastion_x509_config" "test" {
57-
ca_certificate = "updated-ca-cert"
58-
server_public_key = "updated-public-key"
57+
ca_certificate = "updated-ca-cert"
58+
server_public_key = "updated-public-key"
5959
server_private_key = "updated-private-key"
60-
enable = false
60+
enable = false
6161
}
6262
`)
6363
}

bastion/resource_device_service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ func rdpSubProtocolsValid() []string {
317317
"RDP_DRIVE",
318318
"RDP_SMARTCARD",
319319
"RDP_AUDIO_OUTPUT",
320-
"RDP_AUDIO_OUTPUT",
320+
"RDP_AUDIO_INPUT",
321321
}
322322
}
323323

0 commit comments

Comments
 (0)