Skip to content

Instantly share code, notes, and snippets.

View naveedausaf's full-sized avatar

naveedausaf naveedausaf

View GitHub Profile
@naveedausaf
naveedausaf / main.tf
Last active July 4, 2025 16:53
Terraform to create an Azure Container App protected by Cloudflare Free, that uses a user-assigned managed identity to pull image from Azure Container Registry and a secret from Azure Key Vault
data "azurerm_resource_group" "core" {
name = var.core_resource_group_name
}
data "azurerm_user_assigned_identity" "app" {
name = var.flowmazon_api_managed_identity
resource_group_name = data.azurerm_resource_group.core.name
}