@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
9 lines • 355 B
TypeScript
import { Kms } from './encryption/Kms';
/** Volume encryption settings */
export interface Encryption {
/** Create the volume encrypted (auto-derives a LUKS volume type) */
encrypted: boolean;
/** OVH KMS key reference. When omitted, the volume is encrypted with an OVH-managed key. */
kms?: Kms;
}
//# sourceMappingURL=Encryption.d.ts.map