mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
528 B
HCL
21 lines
528 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
|
|
admin_enabled = true
|
|
tags = var.tags
|
|
|
|
depends_on = [module.aks]
|
|
}
|