Skip to content

Support for confidental computin #421

@xWhiteTonicx

Description

@xWhiteTonicx

Is there an existing issue for this?

  • I have searched the existing issues

Description

Confidental compution support for use Intel SGX. It had been already addd to terraform provider.

New or Affected Resource(s)/Data Source(s)

azurerm_kubernetes_cluster

Potential Terraform Configuration

variable "enable_confidential_computing" {
  type        = bool
  default     = false
  description = "(Optional) Should confidential compution be enabled?"
}

resource "azurerm_kubernetes_cluster" "main" {
   [..CUT..]
  dynamic "confidential_computing" {
    for_each = var.enable_confidential_computing ? ["confidential_computing"] : []
    content {
      sgx_quote_helper_enabled = true
    }
  }
   [..CUT..]
}

References

https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/kubernetes_cluster#confidential_computing
https://learn.microsoft.com/en-us/azure/confidential-computing/confidential-nodes-aks-overview

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    Status

    Done

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions