chore(settings): OpenVPN ClientKey -> Key

This commit is contained in:
Quentin McGaw
2022-08-13 18:58:09 +00:00
parent 652daec509
commit 5986432a22
5 changed files with 15 additions and 15 deletions

View File

@@ -35,7 +35,7 @@ func (r *Reader) readOpenVPN() (
return openVPN, fmt.Errorf("environment variable OPENVPN_CERT: %w", err)
}
openVPN.ClientKey, err = readBase64OrNil("OPENVPN_KEY")
openVPN.Key, err = readBase64OrNil("OPENVPN_KEY")
if err != nil {
return openVPN, fmt.Errorf("environment variable OPENVPN_KEY: %w", err)
}