-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for Pod Identity Add On for AKS #9885
Comments
This comment has been minimized.
This comment has been minimized.
Is there a timeline for Pod Identity on AKS being supported by Terraform? I understand that Azure will release a V2 of Pod Identity but that will only be available in Q2 of 2022, which is between 6 and 9 months away. If the idea is to wait till Q2 of 2022, then having a recommend temporary method to turn this on would be nice, even if it just would be as shown below. resource "azurerm_kubernetes_cluster" "default" {
name = "my_cluster"
location = "westeurope"
...
provisioner "local-exec" {
command = "az aks update -g my_resource_group -n my_cluster --enable-pod-identity"
}
} |
For anyone struggling with this: I found that Azure also shares this functionality as an Helm chart. So you can just create a regular AKS cluster with Terraform's
Azure offers these Helm charts for multiple preview features that are not yet supported by the AKS resource in the |
@avinashpancham The problem is that running it on Managed Mode it seems you have no means to assign multiple user identities to VMSS created by the cluster. Does anyone know how to translate this assignment to IaC for this use-case I've mentioned? |
@vipulp86 - that is for the older v1 pod identity feature. as mentioned in the linked documentation it will be replaced by the new Azure AD Workload Identity api which is schedule for public preview sometime this month - once thats out we intend to look into implementing it. |
I follow the topic regarding Workload Identity and it seems that support for Managed Identity won't be added before 9/30. Right now - for me - to make it work I have to call Azure management API to update cluster to use the addon along with identities and exceptions, which is far from ideal solution. I saw pretty good merge request that was closed already and just wondering :) |
This functionality has been released in v3.27.0 of the Terraform Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
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. |
Community Note
Description
Please support the Pod Identity Add-On for AKS
New or Affected Resource(s)
Potential Terraform Configuration
References
The text was updated successfully, but these errors were encountered: