Is there an existing issue for this?
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
Is there an existing issue for this?
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
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