File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 24
24
gpg_private_key : ${{ secrets.GPG_PRIVATE_KEY }}
25
25
passphrase : ${{ secrets.PASSPHRASE }}
26
26
- name : Run GoReleaser
27
- uses : goreleaser/goreleaser-action@v6.1.0
27
+ uses : goreleaser/goreleaser-action@v6.2.1
28
28
with :
29
29
version : latest
30
30
args : release --clean
Original file line number Diff line number Diff line change @@ -42,10 +42,10 @@ func TestAccResourceConfigX509_basic(t *testing.T) {
42
42
func testAccResourceConfigX509Basic () string {
43
43
return (`
44
44
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"
47
47
server_private_key = "test-private-key"
48
- enable = true
48
+ enable = true
49
49
}
50
50
` )
51
51
}
@@ -54,10 +54,10 @@ resource "bastion_x509_config" "test" {
54
54
func testAccResourceConfigX509Update () string {
55
55
return (`
56
56
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"
59
59
server_private_key = "updated-private-key"
60
- enable = false
60
+ enable = false
61
61
}
62
62
` )
63
63
}
Original file line number Diff line number Diff line change @@ -317,7 +317,7 @@ func rdpSubProtocolsValid() []string {
317
317
"RDP_DRIVE" ,
318
318
"RDP_SMARTCARD" ,
319
319
"RDP_AUDIO_OUTPUT" ,
320
- "RDP_AUDIO_OUTPUT " ,
320
+ "RDP_AUDIO_INPUT " ,
321
321
}
322
322
}
323
323
You can’t perform that action at this time.
0 commit comments