Skip to content

Commit

Permalink
fix(panos_ssl_decrypt): Apply the ssl_decrypt_exclude_certificate p…
Browse files Browse the repository at this point in the history
…aram

fixes #341
  • Loading branch information
shinmog committed Jun 22, 2022
1 parent bbca568 commit c670670
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panos/ssl_decrypt.go
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ func loadSslDecrypt(d *schema.ResourceData) ssldecrypt.Config {
var list []ssldecrypt.SslDecryptExcludeCertificate
slist := d.Get("ssl_decrypt_exclude_certificate").([]interface{})
if len(slist) > 0 {
list := make([]ssldecrypt.SslDecryptExcludeCertificate, 0, len(slist))
list = make([]ssldecrypt.SslDecryptExcludeCertificate, 0, len(slist))
for i := range slist {
x := slist[i].(map[string]interface{})
list = append(list, ssldecrypt.SslDecryptExcludeCertificate{
Expand Down

0 comments on commit c670670

Please sign in to comment.