Air Gap License
Overview of the Air-Gap Flow
Step 1: Generate Activation Code
// Generate an activation code using the initialization code and license key.
// This code must be submitted to the Air-Gap Portal to receive a confirmation code.
activationCode, err := lh.GetAirGapActivationCode(initializationCode, licenseKey)
if err != nil {
fmt.Printf("failed to generate air-gap activation code: %w", err)
return err
}
fmt.Printf("Activation Code: %s\n", activationCode)Step 2: Activate License Using Confirmation Code
Required Inputs
Was this helpful?