Removing a Vault Key from an Object Storage Bucket

Remove a Vault master encryption key from an Object Storage bucket.

    1. Open the navigation menu and click Storage. Under Object Storage & Archive Storage, click Buckets.
    2. Select the compartment from the list under List Scope. All buckets in that compartment are listed in tabular form.
    3. Click the bucket for which you want to remove a Vault key assignment. The bucket's Details page appears.
    4. Find Encryption Key and click Unassign.
    5. Confirm the unassignment.
  • Use the oci os bucket update command and required parameters to remove a Vault key to a bucket.

    oci os bucket update --name bucket_name --kms-key-id "" [OPTIONS]
    where the kms-key-id parameter has the value "".

    For example:

    
    oci os bucket update --name MyKeyBucket --kms-key-id ""
    {
      "data": {
        "approximate-count": null,
        "approximate-size": null,
        "auto-tiering": null,
        "compartment-id": "ocid.compartment.oc1..exampleuniqueID",
        "created-by": "ocid1.user.oc1..exampleuniqueID",
        "defined-tags": {},
        "etag": "10a50818-e495-45a9-b1ce-cc815f7b39ad",
        "freeform-tags": {},
        "id": "ocid1.bucket.oc1..exampleuniqueID",
        "is-read-only": false,
        "kms-key-id": null,
        "metadata": {},
        "name": "MyKeyBucket",
        "namespace": "MyNamespace",
        "object-events-enabled": false,					
        "object-lifecycle-policy-etag": null,
        "public-access-type": "NoPublicAccess",
        "replication-enabled": false,
        "storage-tier": "Standard",
        "time-created": "2020-06-29T23:00:35.490000+00:00",
        "versioning": "Disabled"
      },
      "etag": "10a50818-e495-45a9-b1ce-cc815f7b39ad"
    }

    For a complete list of parameters and values for CLI commands, see the CLI Command Reference.

  • This task can't be performed using the API.