fluxcd-flux2/tests/integration/terraform/azure/aks.tf
Somtochi Onyekwere f6b0c6e7ef Add refactored e2e tests
Signed-off-by: Somtochi Onyekwere <somtochionyekwere@gmail.com>
2023-08-29 17:43:53 +05:30

19 lines
502 B
HCL

module "aks" {
source = "git::https://github.com/fluxcd/test-infra.git//tf-modules/azure/aks"
name = local.name
location = var.azure_location
tags = var.tags
}
module "acr" {
source = "git::https://github.com/fluxcd/test-infra.git//tf-modules/azure/acr"
name = local.name
location = var.azure_location
aks_principal_id = [module.aks.principal_id]
resource_group = module.aks.resource_group
tags = var.tags
depends_on = [module.aks]
}