You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This feature is available many vm sku's, but not all. It may be worth delegating to the azure api when trying to set the flag. It also seems like changing the flag requires the node pool to be recreated.
resource"azurerm_kubernetes_cluster""example" {
name="example-aks1"location=azurerm_resource_group.example.locationresource_group_name=azurerm_resource_group.example.namedns_prefix="exampleaks1"default_node_pool {
name="default"node_count=1vm_size="Standard_D2s_v2"enable_encryption_at_host=true//Set to true to activate the preview functionality.
}
}
resource"azurerm_kubernetes_cluster_node_pool""example" {
name="internal"kubernetes_cluster_id=azurerm_kubernetes_cluster.example.idvm_size="Standard_DS2_v2"node_count=1enable_encryption_at_host=true//Set to true to activate the preview functionality. tags={
Environment ="Production"
}
}
References
#0000
The text was updated successfully, but these errors were encountered:
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. If you feel I made an error 🤖 🙉 , please reach out to my human friends 👉 [email protected]. Thanks!
ghost
locked as resolved and limited conversation to collaborators
Mar 5, 2021
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Community Note
Description
Encryption in transit for azure storage is now in preview for AKS (https://docs.microsoft.com/en-us/azure/aks/enable-host-encryption#use-host-based-encryption-on-new-clusters-preview). Please add the needed flag as an option for AKS node pools.
This feature is available many vm sku's, but not all. It may be worth delegating to the azure api when trying to set the flag. It also seems like changing the flag requires the node pool to be recreated.
New or Affected Resource(s)
Potential Terraform Configuration
References
The text was updated successfully, but these errors were encountered: