mirror of
https://github.com/fluxcd/flux2.git
synced 2026-05-06 01:54:43 +00:00
Add refactored e2e tests
Signed-off-by: Somtochi Onyekwere <somtochionyekwere@gmail.com>
This commit is contained in:
parent
1730f3c46b
commit
f6b0c6e7ef
23 changed files with 3069 additions and 11 deletions
19
tests/integration/terraform/azure/aks.tf
Normal file
19
tests/integration/terraform/azure/aks.tf
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
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]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue