You've already forked aws-iam-anywhere-refresher
Some checks failed
🏗️✨ Test Build Workflow / 🖥️ 🔨 Build (push) Failing after 14m15s
Reviewed-on: Siteworxpro/aws-iam-anywhere-refresher#1 Co-authored-by: Ron Rise <ron@siteworxpro.com> Co-committed-by: Ron Rise <ron@siteworxpro.com>
16 lines
437 B
Go
16 lines
437 B
Go
//go:build linux
|
|
|
|
package aws_signing_helper
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func GetMatchingCerts(certIdentifier CertIdentifier) ([]CertificateContainer, error) {
|
|
return nil, errors.New("unable to use cert store signer on linux")
|
|
}
|
|
|
|
func GetCertStoreSigner(certIdentifier CertIdentifier, useLatestExpiringCert bool) (signer Signer, signingAlgorithm string, err error) {
|
|
return nil, "", errors.New("unable to use cert store signer on linux")
|
|
}
|