Skip to content
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 Support for AKS application routing add-on Key Vault integration (GA) #483

Open
1 task done
zioproto opened this issue Dec 6, 2023 · 1 comment
Open
1 task done

Comments

@zioproto
Copy link
Collaborator

zioproto commented Dec 6, 2023

Is there an existing issue for this?

  • I have searched the existing issues

Description

The Managed nginx Ingress with the application routing add-on has a Key Vault integration (GA).

Documentation page:
https://learn.microsoft.com/en-us/azure/aks/app-routing-dns-ssl#enable-azure-key-vault-integration

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

azurerm_kubernetes_cluster

Potential Terraform Configuration

This should be integrated here:

dynamic "web_app_routing" {
for_each = var.web_app_routing == null ? [] : ["web_app_routing"]
content {
dns_zone_id = var.web_app_routing.dns_zone_id
}
}

  dynamic "web_app_routing" {
    for_each = var.web_app_routing == null ? [] : ["web_app_routing"]

    content {
      dns_zone_id = var.web_app_routing.dns_zone_id
      keyvault_id = var.key_vault.id
    }
  }

References

This PR is pending on this azurerm provider PR:
hashicorp/terraform-provider-azurerm#24131

@CrisNevares
Copy link

+1 for this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Development

No branches or pull requests

2 participants