cisco.intersight.intersight_confidential_compute module – Confidential computing BIOS policy for Cisco Intersight
Note
This module is part of the cisco.intersight collection (version 2.18.0).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install cisco.intersight.
To use it in a playbook, specify: cisco.intersight.intersight_confidential_compute.
Synopsis
Creates BIOS policies with hardware-level confidential computing features enabled.
Supports AMD SEV (Secure Encrypted Virtualization), AMD SEV-SNP, and Intel SGX (Software Guard Extensions) for secure AI enclaves.
Combines the correct BIOS knob settings needed to enable memory encryption and trusted execution environments on Cisco UCS servers.
Intended for AI workloads that require protection of proprietary model data in memory.
For more information see Cisco Intersight.
Parameters
Parameter |
Comments |
|---|---|
Public API Key ID associated with the private key. If not set, the value of the INTERSIGHT_API_KEY_ID environment variable is used. |
|
Filename (absolute path) or string of PEM formatted private key data to be used for Intersight API authentication. If a string is used, Ansible vault should be used to encrypt string data. Ex. ansible-vault encrypt_string --vault-id tme@/Users/dsoper/Documents/vault_password_file ‘-----BEGIN EC PRIVATE KEY----- <your private key data> -----END EC PRIVATE KEY-----’ If not set, the value of the INTERSIGHT_API_PRIVATE_KEY environment variable is used. |
|
URI used to access the Intersight API. If not set, the value of the INTERSIGHT_API_URI environment variable is used. Default: |
|
The user-defined description of the BIOS policy. |
|
Override for Intel Total Memory Encryption (TME). TME is a prerequisite for SGX and encrypts all system memory with a platform key. Automatically enabled by intel_sgx profiles; set explicitly only to override. Choices:
|
|
The name assigned to the BIOS policy. The name must be between 1 and 62 alphanumeric characters, allowing special characters :-_. |
|
Override for NUMA optimization. All confidential compute profiles enable NUMA optimization by default. Choices:
|
|
The name of the Organization this resource is assigned to. Profiles and Policies that are created within a Custom Organization are applicable only to devices in the same Organization. Default: |
|
The confidential computing security profile to apply.
Choices:
|
|
Number of AMD SEV Address Space Identifiers (ASIDs) to allocate. Higher ASID counts allow more concurrent encrypted VMs but may reduce available ASIDs for SEV-SNP. Only applicable for amd_sev and amd_sev_snp security profiles. Choices:
|
|
Intel SGX Epoch 0 value. Changing this invalidates all existing SGX sealed data. Only applicable for intel_sgx and intel_sgx_with_auto_reg profiles. Use with caution in production environments. |
|
Intel SGX Epoch 1 value. Changing this invalidates all existing SGX sealed data. Only applicable for intel_sgx and intel_sgx_with_auto_reg profiles. Use with caution in production environments. |
|
If If Choices:
|
|
List of tags in Key:<user-defined key> Value:<user-defined value> format. |
|
If Choices:
|
|
Boolean control for verifying the api_uri TLS certificate Choices:
|
Examples
- name: Create AMD SEV policy for encrypted AI VMs
cisco.intersight.intersight_confidential_compute:
api_private_key: "{{ api_private_key }}"
api_key_id: "{{ api_key_id }}"
organization: AI-Factory
name: bios-amd-sev-ai
description: AMD SEV for secure AI inference VMs
security_profile: amd_sev
sev_asid_count: "509 ASIDs"
- name: Create AMD SEV-SNP policy for maximum VM isolation
cisco.intersight.intersight_confidential_compute:
api_private_key: "{{ api_private_key }}"
api_key_id: "{{ api_key_id }}"
name: bios-sev-snp-training
description: SEV-SNP for secure model training
security_profile: amd_sev_snp
- name: Create Intel SGX policy for enclave-based inference
cisco.intersight.intersight_confidential_compute:
api_private_key: "{{ api_private_key }}"
api_key_id: "{{ api_key_id }}"
name: bios-sgx-inference
description: SGX enclaves for confidential inference
security_profile: intel_sgx_with_auto_reg
- name: Delete confidential compute policy
cisco.intersight.intersight_confidential_compute:
api_private_key: "{{ api_private_key }}"
api_key_id: "{{ api_key_id }}"
name: bios-amd-sev-ai
security_profile: amd_sev
state: absent
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
|---|---|
The API response output returned by the specified resource. Returned: always Sample: |
|
The BIOS settings applied by the security profile and any overrides. Returned: when state is present |