//go:build !cloud package auth // Default build: cloud auth methods are compiled out (see m_cloud.go). // Listing them as "unavailable" rather than omitting them means a method // picker can show "AWS (built without cloud auth support — build with // -tags cloud)" instead of the option silently not existing. func init() { registerUnavailable("built without cloud auth support (build with -tags cloud)", "aws", "azure", "gcp") }