RemoteProvider stores the configuration necessary to connect to a remote key/value store. Optional secretKeyring to unencrypt encrypted values can be provided.
| 75 | // Optional secretKeyring to unencrypt encrypted values |
| 76 | // can be provided. |
| 77 | type RemoteProvider interface { |
| 78 | Provider() string |
| 79 | Endpoint() string |
| 80 | Path() string |
| 81 | SecretKeyring() string |
| 82 | } |
| 83 | |
| 84 | // AddRemoteProvider adds a remote configuration source. |
| 85 | // Remote Providers are searched in the order they are added. |
no outgoing calls
no test coverage detected